Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 16, 2024 via pnpm

markdown-it 13.0.1

Markdown-it - modern pluggable markdown parser.
Package summary
Share
0
issues
3
licenses
4
MIT
1
Python-2.0
1
BSD-2-Clause
Package created
19 Dec 2014
Version published
3 May 2022
Maintainers
1
Total deps
6
Direct deps
5
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
linkify-it@4.0.1
markdown-it@13.0.1
mdurl@1.0.1
uc.micro@1.0.6

Python License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
state-changes
1 Packages, Including:
argparse@2.0.1

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
entities@3.0.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

5
All Dependencies CSV
β“˜ This is a list of markdown-it 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
argparse2.0.138.81 kBPython-2.0
prod
entities3.0.145.15 kBBSD-2-Clause
prod
linkify-it4.0.110.3 kBMIT
prod
mdurl1.0.17.18 kBMIT
prod
uc.micro1.0.62.99 kBMIT
prod

Visualizations

Frequently Asked Questions

What does markdown-it do?

Markdown-it is a highly customizable, modern, pluggable markdown parser written in JavaScript. It follows the CommonMark spec, which provides a clear specification of markdown syntax. Additionally, the package includes syntax extensions like URL autolinking and typographer, along with many others through plugins.

How do you use markdown-it?

Utilizing markdown-it is a fairly straightforward process. First, it must be installed via node.js using the following command: npm install markdown-it --save. After installation, it can be used in a project as shown in the examples below:

For a Node.js environment:

var MarkdownIt = require('markdown-it'),
    md = new MarkdownIt();
var result = md.render('# markdown-it rulezz!');

// Alternatively, using the "sugar" method:
var md = require('markdown-it')();
var result = md.render('# markdown-it rulezz!');

For a browser environment without AMD:

var md = window.markdownit();
var result = md.render('# markdown-it rulezz!');

The 'render' function is then called on the markdown-it instance to convert markdown text to HTML.

Markdown-it can also be used with presets and options, like enabling HTML tags in the source or automatic conversion of URL-like text to links. Plugins can also be loaded by calling '.use' on the markdown-it instance.

Where are the markdown-it docs?

The documentation for markdown-it is available on the package's GitHub repository at https://github.com/markdown-it/markdown-it, where you can also find information on syntax extensions, API, and usage examples. There's also a separate API documentation available at https://markdown-it.github.io/markdown-it/. For plugin developers, there is development info provided within the 'docs' directory of the project repository. There, you can find information on creating and implementing plugins for markdown-it.