Socket
Socket
Sign inDemoInstall

markdown-it-ins

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-ins

tag for markdown-it markdown parser.


Version published
Weekly downloads
181K
increased by1.63%
Maintainers
1
Weekly downloads
 
Created

What is markdown-it-ins?

The markdown-it-ins package is a plugin for the markdown-it Markdown parser that adds support for the <ins> HTML tag, which is used to denote inserted text. This can be useful for indicating additions or changes in a document.

What are markdown-it-ins's main functionalities?

Insertions

This feature allows you to use the ++text++ syntax in your Markdown to denote inserted text, which will be rendered as <ins>text</ins> in HTML.

const md = require('markdown-it')();
const markdownItIns = require('markdown-it-ins');
md.use(markdownItIns);

const result = md.render('++inserted text++');
console.log(result); // Outputs: <p><ins>inserted text</ins></p>

Other packages similar to markdown-it-ins

Keywords

FAQs

Package last updated on 04 Jan 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc