diff --git a/src/components/Note/LongFormArticle/index.tsx b/src/components/Note/LongFormArticle/index.tsx index dba843b1..3ac69860 100644 --- a/src/components/Note/LongFormArticle/index.tsx +++ b/src/components/Note/LongFormArticle/index.tsx @@ -19,17 +19,19 @@ export default function LongFormArticle({ const metadata = useMemo(() => getLongFormArticleMetadataFromEvent(event), [event]) return ( -
-

{metadata.title}

+
+

{metadata.title}

{metadata.summary && (
-

{metadata.summary}

+

{metadata.summary}

)} {metadata.tags.length > 0 && (
{metadata.tags.map((tag) => ( - + {tag} ))} @@ -46,7 +48,12 @@ export default function LongFormArticle({ components={ { nostr: (props) => , - a: (props) => + a: (props) => ( + + ), + p: (props) =>

, + div: (props) =>

, + code: (props) => } as Components } >