summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-08-07 13:25:35 +0200
committerThomas F. K. Jorna <[email protected]>2021-08-07 13:25:35 +0200
commit4e86b7ef1eb69354a80bd93f2063ac1643236b80 (patch)
tree72676dfedd5b280c2ab42b4d176ebf776ef276f3 /pages
parent87805439815b0a929d9e300b942c145d0bbe7277 (diff)
fix: no bare boundp in iflet
Diffstat (limited to 'pages')
-rw-r--r--pages/view.tsx24
1 files changed, 24 insertions, 0 deletions
diff --git a/pages/view.tsx b/pages/view.tsx
new file mode 100644
index 0000000..da28109
--- /dev/null
+++ b/pages/view.tsx
@@ -0,0 +1,24 @@
+import unified from 'unified';
+import parse from 'uniorg-parse';
+import uniorg2rehype from 'uniorg-rehype';
+import rehypeStringify from 'rehype-stringify';
+import React from 'react';
+
+export interface ViewPageProps {
+
+}
+export default function ViewPage(props: ViewPageProps) {
+
+ const processor = unified().use(parse)
+ .use(uniorg2rehype)
+ .use(rehypeStringify);
+
+ processor
+ .process(`* org-mode example\n your text goes here`)
+ .then((file) => console.log(file.contents));
+
+ return (
+ <div>
+ </div>
+ )
+}