this repo has no description
0
fork

Configure Feed

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

deps: change to md4x for better performance

+3 -3
+1 -1
package.json
··· 33 33 "pinia": "^3.0.4" 34 34 }, 35 35 "packageManager": "pnpm@10.32.1" 36 - } 36 + }
+2 -2
src/pages/pub/[rkey]/[slug].vue
··· 18 18 19 19 <script setup lang="ts"> 20 20 import type { Note } from "~/api/note.type" 21 - import { marked } from "marked" 21 + import { renderToHtml } from "md4x" 22 22 23 23 const props = defineProps<{ note: Note }>() 24 - const textContent = marked.parse(props.note.textContent) 24 + const textContent = renderToHtml(props.note.textContent) 25 25 26 26 useHead({ 27 27 title: props.note.title,