Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
asciidoctor-prism-extension
Advanced tools
Highlight Asciidoc code listings with Prism.js, server side, with no front-end dependencies.
Highlight Asciidoc code listings with Prism.js, server side, with no front-end dependencies.
This module is intended to be used with Asciidoctor.js, and Node.js (v10+). It adds a new syntax highlighter, to be used when converting Asciidoc to HTML5 documents. The syntax highlighting happens during the document conversion.
$ npm install @asciidoctor/core asciidoctor-prism-extension
const asciidoctor = require('@asciidoctor/core')();
const prismExtension = require('asciidoctor-prism-extension');
asciidoctor.SyntaxHighlighter.register('prism', prismExtension);
This extension relies on Asciidoc attributes to affect the theme and the highlighted syntaxes.
= Document
:source-highlighter: prism
:prism-languages: bash,docker,jsx
...
Attribute | Default | Possible values |
---|---|---|
prism-theme | prism.css | Any filename in this list. |
prism-languages | asciidoc,bash,json,markdown,typescript,yaml | Any supported language. |
Theme can be disabled with the negated attribute (!
character):
= Document
:source-highlighter: prism
:prism-theme!:
:prism-languages: bash,docker,jsx
...
Then you convert as usual:
asciidoctor.convertFile('document.adoc', {
to_file: 'document.html',
backend: 'html5'
});
Note: attributes can be specified at this stage too. Have a look at Asciidoctor.js API to learn more about it.
Author your documents as you would regularly do. The second argument of a code listing hints the language to the syntax highlighter.
In the following example, yaml
is going to be used to colour the output:
[source,yaml]
.example.yml
----
language: node_js
node_js: node
script: npm test
----
Prism is a highly configurable syntax highlighter.
MIT.
FAQs
Highlight Asciidoc code listings with Prism.js, server side, with no front-end dependencies.
The npm package asciidoctor-prism-extension receives a total of 181 weekly downloads. As such, asciidoctor-prism-extension popularity was classified as not popular.
We found that asciidoctor-prism-extension demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.