diff options
Diffstat (limited to 'pages/uniorg.tsx')
-rw-r--r-- | pages/uniorg.tsx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/pages/uniorg.tsx b/pages/uniorg.tsx deleted file mode 100644 index 0c77cdb..0000000 --- a/pages/uniorg.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import unified from 'unified' -import createStream from 'unified-stream' -import uniorgParse from 'uniorg-parse' -import uniorg2rehype from 'uniorg-rehype' -import highlight from 'rehype-highlight' -import katex from 'rehype-katex' -import rehype2react from 'rehype-react' -import React from 'react' - -export interface uniorgProps { - orgText: string -} - -export const UniOrg = (props: uniorgProps) => { - const { orgText } = props - const processor = unified() - .use(uniorgParse) - .use(uniorg2rehype) - .use(katex) - .use(rehype2react, { createElement: React.createElement }) - - return <div>processor.processSync(orgText)</div> -} - |