Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

markdown-it-sup

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-sup

<sup> tag for markdown-it markdown parser.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created

What is markdown-it-sup?

The markdown-it-sup package is a plugin for the markdown-it Markdown parser that adds support for superscript text. This allows users to easily include superscript text in their Markdown documents.

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

Superscript Text

This feature allows you to render superscript text in Markdown. In the example, '19^th^ century' will be converted to '19<sup>th</sup> century' in HTML.

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

const result = md.render('This is a superscript text example: 19^th^ century.');
console.log(result);

Other packages similar to markdown-it-sup

Keywords

FAQs

Package last updated on 12 Mar 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