fix: formatting
This commit is contained in:
parent
ad81eb050c
commit
3d97366667
3 changed files with 13 additions and 4 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.19.10",
|
"version": "24.19.11",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.19.10",
|
"version": "24.19.11",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.19.10",
|
"version": "24.19.11",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -30,7 +30,16 @@ async function handleMastodonPost(env) {
|
||||||
|
|
||||||
if (existingPost) continue
|
if (existingPost) continue
|
||||||
|
|
||||||
const plainTextDescription = convert(item.description)
|
const plainTextDescription = convert(item.description, {
|
||||||
|
wordwrap: false,
|
||||||
|
selectors: [
|
||||||
|
{ selector: 'a', options: { ignoreHref: true } },
|
||||||
|
{ selector: 'h1', options: { uppercase: false } },
|
||||||
|
{ selector: 'h2', options: { uppercase: false } },
|
||||||
|
{ selector: 'h3', options: { uppercase: false } },
|
||||||
|
{ selector: '*', format: 'block' }
|
||||||
|
]
|
||||||
|
})
|
||||||
const content = `${item.title}\n\n${plainTextDescription}\n\n${item.link}`
|
const content = `${item.title}\n\n${plainTextDescription}\n\n${item.link}`
|
||||||
|
|
||||||
await postToMastodon(mastodonApiUrl, accessToken, content)
|
await postToMastodon(mastodonApiUrl, accessToken, content)
|
||||||
|
|
Reference in a new issue