forked from FoundKeyGang/FoundKey
enhance: add tag for quotes
Ref: FEP-e232
This commit is contained in:
parent
7170b86724
commit
9bdf24d3a5
1 changed files with 10 additions and 0 deletions
|
@ -111,6 +111,16 @@ export default async function renderNote(note: Note, dive = true, isTalk = false
|
||||||
...apemojis,
|
...apemojis,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (quote) {
|
||||||
|
tag.push({
|
||||||
|
type: 'Link',
|
||||||
|
mediaType: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
||||||
|
href: quote,
|
||||||
|
name: `RE: ${quote}`,
|
||||||
|
rel: 'https://misskey-hub.net/ns#_misskey_quote',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const asPoll = poll ? {
|
const asPoll = poll ? {
|
||||||
type: 'Question',
|
type: 'Question',
|
||||||
content: await toHtml(text, note.mentions),
|
content: await toHtml(text, note.mentions),
|
||||||
|
|
Loading…
Reference in a new issue