0.3.0 • Published 6 years ago
iomd v0.3.0
IOMD Parser
Mozilla's IOMD format standalone parser.
Usage
npm i iomdUse 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
0.3.0
6 years ago