0.3.0 • Published 5 years ago

iomd v0.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

IOMD Parser

Mozilla's IOMD format standalone parser.

Usage

npm i iomd

Use parser:

const iomd = require('iomd');

const chunks = iomd.parse(`
%% markdown
# IOMD

IOMD is a text container created to mix JS, Markdown, LaTeX and any other text
format in one file. It was originally developed by Mozilla for scientific
notebooks project [Iodide](https://iodide-project.github.io).

%% js

console.log('This is a part of JS mixed with markdown');
`);

Method parse returns an array of Chunks. Each Chunk has properties type, flags, content, startLine, endLine and index.

License

MIT © Rumkin