Convert OmniOutliner's opml to markdown.
npm install opml-to-markdownConvert OPML(Outline) to Markdown
Use Case
* OmniOutliner's opml -> Markdown -> cleaver's slide.
`` sh`
npm install opml-to-markdown -g
` sh
$ opml-to-markdown -h
Usage: cmd [options]
-h, --help displays help
-e, --entry String opml file path
-o, --outfile String output to file path
--require String builder module(like build-slide-markdown.js) path
`
` sh`
$ opml-to-markdown test/fixtures/header-list-note/test.opml
` xml`
to
`markdown
title: title
--
- H2 Text
- H2
- text
--
note
note
`
You have to implement building module.
` sh`
$ opml-to-markdown -e test/fixtures/header-list-note/test.opml --require lib/build-slide-markdown.js
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D
MIT