
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
markdown-it-terminal
Advanced tools
Plugin for markdown-it to parse and output markdown formatted for the terminal
This is a plugin to provide ansi terminal output for markdown-it. It is heavily inspired by marked-terminal, a terminal renderer for the marked library.
This library is not officially supported by markdown-it.
npm install markdown-it markdown-it-terminal
markdown-it
provides a method for extending it with plugins.
var markdown = require('markdown-it');
var terminal = require('markdown-it-terminal');
markdown.use(terminal);
You can override the default options if you choose.
var styles = require('ansi-styles');
var markdown = require('markdown-it');
var terminal = require('markdown-it-terminal');
var options = {
styleOptions: {
code: styles.green
}
}
markdown.use(terminal, options);
// inline code now prints in green instead of the default yellow
markdown-it-terminal
takes several options, most of which are to override existing defaults.
var options = {
styleOptions:{},
highlight: require('cardinal').highlight,
unescape: true,
indent: ' '
}
Styles are defined per token, and make use of the ansi-styles
library, which provides a number of open and close values for ansi codes.
In the most basic implementation, you can simply provide a supported style like so:
var styles = require('ansi-styles');
var options = {
styleOptions: {
code: styles.green
}
}
markdown-it-terminal
exposes a utility method to build compound styles, using an array of style names (must be supported by ansi-styles
).
var styles = require('ansi-styles');
var terminal = require('markdown-it-terminal');
var options = {
styleOptions: {
code: terminal.compoundStyle(['green','underline'])
}
}
The following tokens can be overridden through styleOptions:
Highlight function to parse code blocks. Should be a function that takes a string and outputs a formatted string.
Unescape content, true
by default.
Indent all content under a heading (h1
..h6
) using this string. With indent: ' '
(two spaces):
Markdown | Rendered |
---|---|
# Heading 1 | Heading 1 |
markdown-it-terminal
uses the cardinal library
for code highlight support by default.
Because ansi is not supported on cmd.exe, markdown-it-terminal
only works on Windows shells with ansi support.
FAQs
Plugin for markdown-it to parse and output markdown formatted for the terminal
The npm package markdown-it-terminal receives a total of 0 weekly downloads. As such, markdown-it-terminal popularity was classified as not popular.
We found that markdown-it-terminal 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.