diff options
Diffstat (limited to 'packages/gitbook-asciidoc/lib/tohtml.js')
-rw-r--r-- | packages/gitbook-asciidoc/lib/tohtml.js | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/packages/gitbook-asciidoc/lib/tohtml.js b/packages/gitbook-asciidoc/lib/tohtml.js index 80cbb89..46203e4 100644 --- a/packages/gitbook-asciidoc/lib/tohtml.js +++ b/packages/gitbook-asciidoc/lib/tohtml.js @@ -2,7 +2,7 @@ var asciidoctor = require('asciidoctor.js')(); var opal = asciidoctor.Opal; var processor = asciidoctor.Asciidoctor(true); - +// Render Asciidoc to HTML (block) function asciidocToHTML(content) { var options = opal.hash2(['attributes'], {'attributes': 'showtitle'}); @@ -10,4 +10,15 @@ function asciidocToHTML(content) { return html; }; -module.exports = asciidocToHTML; +// Render Asciidoc to HTML (inline) +function asciidocToHTMLInline(content) { + var options = Opal.hash({doctype: 'inline', attributes: ['showtitle']}); + + var html = processor.$convert(content, options); + return html; +}; + +module.exports = { + block: asciidocToHTML, + inline: asciidocToHTMLInline +}; |