You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Asciidoctor.js: AsciiDoc in JavaScript powered by Asciidoctor
Asciidoctor.js brings AsciiDoc to the JavaScript world!
This project uses Opal to transpile Asciidoctor, a modern implementation of AsciiDoc, from Ruby to JavaScript to produce asciidoctor.js.
The asciidoctor.js script can be run on any JavaScript platform, including Node.js, GraalVM and, of course, a web browser.
Quickstart
$ npm i asciidoctor --save
Here is a simple example that converts AsciiDoc to HTML5:
sample.js
importasciidoctorfrom'asciidoctor'// (1)constAsciidoctor=asciidoctor()constcontent='https://asciidoctor.org[*Asciidoctor*] '+'running on https://opalrb.com[_Opal_] '+'brings AsciiDoc to Node.js!'consthtml=Asciidoctor.convert(content)// (2)console.log(html)// (3)
Instantiate the Asciidoctor.js library
Convert AsciiDoc content to HTML5 using Asciidoctor.js
Print the HTML5 output to the console
Save the file as sample.js and run it using the node command:
$ node sample.js
You should see the following output in your terminal:
<divclass="paragraph"><p><ahref="https://asciidoctor.org"><strong>Asciidoctor</strong></a> running on <ahref="https://opalrb.com"><em>Opal</em></a> brings AsciiDoc to Node.js!</p></div>
It’s also possible to use the following script tag directly into your HTML page:
If you want to learn more about Asciidoctor.js, please read the User Manual.
Contributing
In the spirit of free software, everyone is encouraged to help improve this project.
If you discover errors or omissions in the source code, documentation, or website content, please don’t hesitate to submit an issue or open a pull request with a fix.
New contributors are always welcome!
The Contributing guide provides information on how to contribute.
If you want to write code, the Contributing Code guide will help you to get started quickly.