1.0.1 • Published 3 months ago

marked-jira v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

marked-jira

npm install size downloads Test

A custom renderer for marked that generates Jira-compatible markup.

Currently, it supports the following features:

  • Headings
  • Blockquotes
  • Lists
  • Code blocks
  • Tables
  • Links
  • Text formatting (bold, italic, underline, strikethrough)
  • Horizontal rules

Demo

Check out the demo to see it in action. 👀

Usage

import { marked } from "marked";
import markedJira from "marked-jira";

// or UMD script
// <script src="https://unpkg.com/marked/marked.min.js"></script>
// <script src="https://unpkg.com/marked-jira/marked-jira.min.js"></script>

marked.use(markedJira(options));

marked.parse("# Hello, world!");
// h1. Hello, world!

References

1.0.1

3 months ago

1.0.0

3 months ago