ensure marked is using expected extensions
This commit is contained in:
parent
77a1ec1057
commit
8f26249a04
2 changed files with 15 additions and 2 deletions
16
src/main.ts
16
src/main.ts
|
@ -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
|
||||
|
|
|
@ -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"]')
|
||||
|
|
Loading…
Add table
Reference in a new issue