From 872be7c3631895d951e1991b0bcbd4d164941dab Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 7 Aug 2021 13:26:48 +0200 Subject: chore: remove test files --- pages/view.tsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 pages/view.tsx (limited to 'pages') diff --git a/pages/view.tsx b/pages/view.tsx deleted file mode 100644 index da28109..0000000 --- a/pages/view.tsx +++ /dev/null @@ -1,24 +0,0 @@ -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 ( -
-
- ) -} -- cgit v1.2.3