Table of Contents
import { convert } from "lwe8-ascii";
Example
const content = 'http://asciidoctor.org[*Asciidoctor*] ' +
'running on https://opalrb.com[_Opal_] ' +
'brings AsciiDoc to Node.js!'
// convert to html
const html = convert(content).html;
// write to a file
const fileName = "index.html"
convert(content).write(fileName)