feat(index): add obsidian callouts
All checks were successful
build dist / build-dist (push) Successful in 30s

This commit is contained in:
z0x 2025-03-23 20:26:30 -04:00
parent 5ff1ac0a44
commit 6c1d9fce5b
7 changed files with 437 additions and 45 deletions

View file

@ -14,6 +14,7 @@ import remarkEmoji from 'remark-emoji'
import remarkMath from 'remark-math'
import remarkSectionize from 'remark-sectionize'
import remarkToc from 'remark-toc'
import remarkCallout from "@r4ai/remark-callout";
import { pluginCollapsibleSections } from '@expressive-code/plugin-collapsible-sections'
import { pluginLineNumbers } from '@expressive-code/plugin-line-numbers'
@ -105,6 +106,6 @@ export default defineConfig({
},
],
],
remarkPlugins: [remarkToc, remarkMath, remarkEmoji, remarkSectionize],
remarkPlugins: [remarkToc, remarkMath, remarkEmoji, remarkSectionize, remarkCallout,],
},
})