From 8f26249a043db3b3ccf8159f69a4b20c49d8b01a Mon Sep 17 00:00:00 2001 From: Lightling Date: Fri, 15 Mar 2024 01:23:57 -0400 Subject: [PATCH] ensure marked is using expected extensions --- src/main.ts | 16 +++++++++++++++- src/main.vue | 1 - 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 146920e..c6e23f9 100644 --- a/src/main.ts +++ b/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 diff --git a/src/main.vue b/src/main.vue index 696446d..888f92c 100644 --- a/src/main.vue +++ b/src/main.vue @@ -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"]')