ensure marked is using expected extensions

This commit is contained in:
lightling 2024-03-15 01:23:57 -04:00
parent 77a1ec1057
commit 8f26249a04
2 changed files with 15 additions and 2 deletions

View file

@ -1,12 +1,26 @@
import { createPinia } from 'pinia'
import { type RouteRecordRaw } from 'vue-router'
import { ViteSSG } from 'vite-ssg'
import { createPinia } from 'pinia'
import hljs from 'highlight.js'
import { marked } from 'marked'
import { markedHighlight } from 'marked-highlight'
import main from './main.vue'
import './main.sass'
import { createRoutes, useRouteStore } from './routes'
import { routes as appRoutes, header, type RouteDefinition } from 'content/routes.js'
import { headingSectionsExtension } from './utilities/marked'
marked
.use(headingSectionsExtension() as any)
.use(markedHighlight({
langPrefix: 'hljs language-',
highlight(code, lang) {
const language = hljs.getLanguage(lang) ? lang : 'plaintext'
return hljs.highlight(code, { language }).value
},
}))
export const createApp = ViteSSG(
// the root component

View file

@ -12,7 +12,6 @@ const currentRoute = getCurrentRoute()
const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path]
const headerConfig = routeStore._header
console.log(currentRoute)
onMounted(async () => {
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')