v2.2.6-fixed
Patched version of Asciidoctor.js to be used with Deno
Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
deno-asciidoctor
Patched version of Asciidoctor.js to be used with Deno
Description
This repository automatically patches the browser bundle from
@asciidoctor/core
to make
it compatible with Deno and creates a tag matching the version of the
npm module.
For more information about the module, please visit the Asciidoctor.js repository.
Usage
import Asciidoctor from 'https://deno.land/x/asciidoctor/mod.js';
const asciidoctor = Asciidoctor();
const html = asciidoctor.convert("== TestTitle");
console.log(html);