Snow 1d0b9c5323 增加了node环境 | 1 month ago | |
---|---|---|
.. | ||
dist | 1 month ago | |
types | 1 month ago | |
LICENSE | 1 month ago | |
README.md | 1 month ago | |
package.json | 1 month ago |
This package provides Asciidoctor core functionality:
$ npm i @asciidoctor/core --save
Here is a simple example that converts AsciiDoc to HTML5:
sample.js
const asciidoctor = require('@asciidoctor/core')() // <1>
const content = 'http://asciidoctor.org[*Asciidoctor*] ' +
'running on https://opalrb.com[_Opal_] ' +
'brings AsciiDoc to Node.js!'
const html = asciidoctor.convert(content) // <2>
console.log(html) // <3>
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:
<div class="paragraph">
<p><a href="http://asciidoctor.org"><strong>Asciidoctor</strong></a> running on <a href="http://opalrb.com"><em>Opal</em></a> brings AsciiDoc to Node.js!</p>
</div>
If you want to know more about Asciidoctor.js, please read the User Manual.
Refer to the CHANGELOG for a complete list of changes.