This extension is available on https://jsr.io/@tani/asciidoctor-shiki
This extension is not designed for browser. You must not use this extension without Node.js.
import asciidoctor from '@asciidoctor/core';
improt AsciidoctorShiki from 'asciidoctor-shiki';
asciidoctor.SyntaxHighlighter.register('shiki', AsciidoctorShiki)
const options = {
attributes: {
'source-highlighter': 'shiki',
'shiki-theme': 'nord'
}
}
const document = `
[source,ruby]
----
p "Hello"
----
`;
console.log(asciidoctor.convert(document, options))
- Register this extension using
SyntaxHighlighter.register
- Set the attribute
source-highlighter
- Set the attribute
shiki-theme
Copyright (c) 2024 TANIGUCHI Masaya. All rights reserved.
This extension is licensed under the MIT license https://git.io/mit-license