unoffical wafrn mirror wafrn.net
atproto social-network activitypub
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

small

+3 -3
+3 -3
packages/backend/utils/activitypub/postToJSONLD.ts
··· 196 196 const link = `${ 197 197 completeEnvironment.frontendUrl 198 198 }/dashboard/search/${encodeURIComponent(tag.tagName)}`; 199 - tagsAndQuotes = `${tagsAndQuotes}<small><a class="hashtag" data-tag="post" href="${link}" rel="tag ugc">#${externalTagName}</a></small> `; 200 - misskeyTagsAndQuotes = `${misskeyTagsAndQuotes} <small>${ 199 + tagsAndQuotes = `${tagsAndQuotes}<a class="hashtag" data-tag="post" href="${link}" rel="tag ugc">#${externalTagName}</a>`; 200 + misskeyTagsAndQuotes = `${misskeyTagsAndQuotes}${ 201 201 tag.tagName.trim().includes(" ") 202 202 ? "# " + tag.tagName.trim() 203 203 : "#" + tag.tagName.trim() 204 - }</small>`; 204 + }`; 205 205 fediTags.push({ 206 206 type: "Hashtag", 207 207 name: `#${externalTagName}`,