summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--anyons.html0
-rw-r--r--pages/view.tsx24
-rw-r--r--util/orga.js8
-rw-r--r--util/uniorg.js10
4 files changed, 0 insertions, 42 deletions
diff --git a/anyons.html b/anyons.html
deleted file mode 100644
index e69de29..0000000
--- a/anyons.html
+++ /dev/null
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 (
- <div>
- </div>
- )
-}
diff --git a/util/orga.js b/util/orga.js
deleted file mode 100644
index 4f85eeb..0000000
--- a/util/orga.js
+++ /dev/null
@@ -1,8 +0,0 @@
-const stream = import('unified-stream')
-const reorg = require('@orgajs/reorg')
-const mutate = require('@orgajs/reorg-rehype')
-const html = import('rehype-stringify')
-
-const processor = reorg().use(mutate).use(html)
-
-process.stid.pipe(stream(processor)).pipe(process.stdout)
diff --git a/util/uniorg.js b/util/uniorg.js
deleted file mode 100644
index cc046e9..0000000
--- a/util/uniorg.js
+++ /dev/null
@@ -1,10 +0,0 @@
-
-import { unified } from 'unified';
-var createStream = import('unified-stream');
-var uniorgParse = import('uniorg-parse');
-var uniorg2rehype = import('uniorg-rehype');
-var html = import('rehype-stringify');
-
-var processor = unified().use(uniorgParse).use(uniorg2rehype).use(html);
-
-process.stdin.pipe(createStream(processor)).pipe(process.stdout);