0.0.1 • Published 10 months ago

@rtprog/adoc-json-converter v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

adoc-json-converter

AsciiDoctor.js JSON Converter

Installation

npm install @rtprog/adoc-json-converter

Usage

const Asciidoctor = require('asciidoctor.js');
const JSONConverter = require('@rtprog/adoc-json-converter');

const asciidoctor=Asciidoctor();
asciidoctor.ConverterFactory.register(new JSONConverter(), ['json']);

asciidoctor.load(doc, {
    backend: 'json',
    doctype: 'article',
}).convert();
0.0.1

10 months ago