diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-01 20:41:17 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-01 20:41:17 +0200 |
commit | 1b488b87fef21c1f430db4131e3ceb82f25612cf (patch) | |
tree | 84665fd286d5823698f1645232a32d9e36f39123 /util | |
parent | 56eeb1fc6b03c4e8ed9405e301c7edc7be5fd5d9 (diff) |
chore: build and clean
Diffstat (limited to 'util')
-rw-r--r-- | util/getOrgText.ts | 0 | ||||
-rw-r--r-- | util/uniorg.tsx | 9 |
2 files changed, 4 insertions, 5 deletions
diff --git a/util/getOrgText.ts b/util/getOrgText.ts deleted file mode 100644 index e69de29..0000000 --- a/util/getOrgText.ts +++ /dev/null diff --git a/util/uniorg.tsx b/util/uniorg.tsx index ba86a89..3304a32 100644 --- a/util/uniorg.tsx +++ b/util/uniorg.tsx @@ -1,8 +1,8 @@ import unified from 'unified' -import createStream from 'unified-stream' +//import createStream from 'unified-stream' import uniorgParse from 'uniorg-parse' import uniorg2rehype from 'uniorg-rehype' -import highlight from 'rehype-highlight' +//import highlight from 'rehype-highlight' import katex from 'rehype-katex' import rehype2react from 'rehype-react' import React from 'react' @@ -19,7 +19,6 @@ export const UniOrg = (props: UniOrgProps) => { .use(katex) .use(rehype2react, { createElement: React.createElement }) - console.log(processor.processSync(orgText)) - return <div> {processor.processSync(orgText).result}</div> + console.log(processor.processSync(orgText)) + return <div> {processor.processSync(orgText).result}</div> } - |