diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts
index e6b6db7..8905dcd 100644
--- a/docs/.vitepress/config.mts
+++ b/docs/.vitepress/config.mts
@@ -1,4 +1,5 @@
import { defineConfig } from 'vitepress'
+import ohmMarkdownPlugin from '../plugins/ohm-plugin/vitepress-ohm-plugin'
// https://vitepress.dev/reference/site-config
export default defineConfig({
@@ -63,7 +64,9 @@ export default defineConfig({
{
text: 'FAQ',
items: [
- { text: 'Comparison with Dataview', link: '/faq/comparison-with-dataview' }
+ { text: 'Comparison with Dataview', link: '/faq/comparison-with-dataview' },
+ { text: 'Understanding Tags', link: '/faq/understanding-tags'}
+
]
},
{
@@ -90,5 +93,10 @@ export default defineConfig({
message: '',
copyright: 'By hypersphere.
Sponsor Me: Ko-Fi'
}
+ },
+ markdown: {
+ config(md) {
+ md.use(ohmMarkdownPlugin())
+ },
}
})
diff --git a/docs/.vitepress/theme/components/Stats.vue b/docs/.vitepress/theme/components/Stats.vue
index 796528d..692baa3 100644
--- a/docs/.vitepress/theme/components/Stats.vue
+++ b/docs/.vitepress/theme/components/Stats.vue
@@ -1,22 +1,22 @@