diff --git a/src/app/components/Share/MarkdownView.tsx b/src/app/components/Share/MarkdownView.tsx index b2f82667..1c88b4e9 100644 --- a/src/app/components/Share/MarkdownView.tsx +++ b/src/app/components/Share/MarkdownView.tsx @@ -13,7 +13,7 @@ const MarkdownView: FC = ({ messages }) => { const content = useMemo(() => { return messages .filter((m) => !!m.text) - .map((m) => `**${m.author}**: ` + m.text) + .map((m) => `## ${m.author}` + '\n\n' + m.text) .join('\n\n') }, [messages])