1
2
3
4
5
6
7
8
9
10
11
12
13
import { hnPrefixURL } from "https://esm.town/v/stevekrouse/hnPrefixURL";
export let hnStoryToText = ({
author,
title,
url,
points,
num_comments,
objectID,
}) => `# ${author} posted ${title}
${url}
${hnPrefixURL}${objectID}
[${points} upvotes, ${num_comments} comments]`;