From 0ee2cd0b13bd994011153e52ce84c3297d775047 Mon Sep 17 00:00:00 2001 From: developomp Date: Wed, 8 Sep 2021 11:25:45 +0900 Subject: [PATCH] moved import statement location --- source/generate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/generate.ts b/source/generate.ts index ea43c71..2c90700 100644 --- a/source/generate.ts +++ b/source/generate.ts @@ -13,9 +13,9 @@ import readTimeEstimate from "read-time-estimate" // post read time estimation import matter from "gray-matter" // parse markdown metadata import toc from "markdown-toc" // table of contents generation import markdownIt from "markdown-it" // rendering markdown -import hljs from "highlight.js" // code block highlighting import markdownItTexMath from "markdown-it-texmath" // rendering mathematical expression import markdownItAnchor from "markdown-it-anchor" // markdown anchor +import hljs from "highlight.js" // code block highlighting import katex from "katex" // rendering mathematical expression const markdownPath = "./markdown" // where it will look for markdown documents