From 56eeb1fc6b03c4e8ed9405e301c7edc7be5fd5d9 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Fri, 1 Oct 2021 19:11:08 +0200 Subject: feat: basic preview feature --- util/uniorg.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'util/uniorg.tsx') diff --git a/util/uniorg.tsx b/util/uniorg.tsx index e4d8dfd..ba86a89 100644 --- a/util/uniorg.tsx +++ b/util/uniorg.tsx @@ -7,11 +7,11 @@ import katex from 'rehype-katex' import rehype2react from 'rehype-react' import React from 'react' -export interface uniorgProps { +export interface UniOrgProps { orgText: string } -const uniorg = (props: uniorgProps) => { +export const UniOrg = (props: UniOrgProps) => { const { orgText } = props const processor = unified() .use(uniorgParse) @@ -19,7 +19,7 @@ const uniorg = (props: uniorgProps) => { .use(katex) .use(rehype2react, { createElement: React.createElement }) - return processor.processSync(orgText) + console.log(processor.processSync(orgText)) + return
{processor.processSync(orgText).result}
} -export default uniorg -- cgit v1.2.3