Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
md-standalone
Advanced tools
npm install -g md-standalone
mdst foo.md > doc.html
mdst -h
Usage: mdst [options] path/to/doc.md
Options:
-s, --style Stylesheet path(css, scss or less). [default: "/path/to/md-standalone/lib/style/style.scss"]
-o, --output Output path(default STDOUT).
-l, --level Headings level [default: "1-6"]
-c, --code Code Theme [default: "tomorrow-night-eighties"]
-m, --minify Minify
-t, --toc Toc Tree
-j, --js Js Path [default: "/path/to/md-standalone/lib/defaultRenderer.js"]
local install
npm install md-standalone
usage
var mdst = require('md-standalone');
mdst({
mdPath: 'paht/to/doc.md',
jsPath: 'path/to/renderer.js',
styleSheetPath: 'path/to/stylesheet.css',
codeTheme: 'tomorrow-night-eighties',
toc: true,
minify: true,
level: {
top: 1,
bottom: 6
}
}, function(err, result) {
// ...
});
mdst foo.md > doc.html --js path/to/renderer.js
example
var html = require('mdHelper').getHtml();
var options = require('options');
var tocHelper = require('tocHelper');
module.exports = function() {
document.body.innerHTML = '<div id="md">' +html + '</div>';
document.title = '(^ω^ ≡ ^ω^)おっおっおっ';
console.log(options);
var tocTree = tocHelper.getTocTree();
console.log(tocTree);
var tocTree2 = tocHelper.trimTocTree(tocTree, 2, 3);
console.log(tocTree, tocTree2);
console.log(tocHelper.renderTocTree(tocTree2));
};
A custom renderer can use some helpers.
return a rendered markdown file.
return a toc tree as json.
[
{
heading: {level: 1, text: foo, anchor: foo},
children: [...]
},
...
]
trim a toc tree.
// generate a toc tree range of h2-h4
tocHelper.trimTocTree(tocTree, 2, 4)
render a html string from a toc tree.
parts of cli options.
{
toc: true,
level: {
top: 1,
bottom: 6
},
codeTheme: 'tomorrow-night-eighties'
}
FAQs
``` npm install -g md-standalone ```
The npm package md-standalone receives a total of 6 weekly downloads. As such, md-standalone popularity was classified as not popular.
We found that md-standalone 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.