The new version of GitBook dropped support for AsciiDoc, so it’s time to migrate to Antora!
Use `/*` and `*/` for multiline comments.
[
Inline(:plain, text='Use ', children=[]),
Inline(:monospaced, text='/*', children=[]),
This release is based on Asciidoctor 1.5.7.1 and Opal 0.11.99.dev (e2167f4b).
In this release, we added initial support for GraalVM. If you want to embed Asciidoctor.js in a JVM-based application with GraalVM, please read the dedicated section in the User Manual.
A complete set of API is available to take full advantage of the new logging system introduced in Asciidoctor 1.5.7. Everything you need to know about the new Logging API is described in the User Manual:
- how to use the built-in In-memory Logger,
- [how to replace the default Logger](https://asciidoctor-docs.netlify.com/asciidoctor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry.blockMacro(function () { | |
const self = this; | |
self.named('gist') | |
self.process(function (parent, target, attrs) { | |
const titleHTML = attrs.title ? `<div class="title">${attrs.title}</div>\n` : '' | |
const html = `<div class="openblock gist"> | |
${titleHTML}<div class="content"> | |
<script src="https://gist.github.com/${target}.js"></script> | |
</div> | |
</div>` |
quote - a quotation or excerpt; attribution with title of source are optional
— attribution
citetitle
citetitle
Example 1. Example block
This is an example block.