1.0.6 • Published 1 year ago

@gokulvaradan/markdown-parser v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

📦 Markdown Parser

A lightweight, modular Markdown-to-HTML parser that supports all essential markdown features—including headings, lists, tables, blockquotes, code blocks, multimedia embedding, and rich word formatting.

NPM Package

✅ Features

  • ✔️ Headings (#, ##, … ######)
  • ✔️ Paragraphs and spans
  • ✔️ Ordered & Unordered Lists
  • ✔️ Inline & Multiline Code Blocks
  • ✔️ Blockquotes
  • ✔️ Tables with auto-alignment
  • ✔️ Images & Videos
  • ✔️ Horizontal Rules (---)
  • ✔️ Word Formatting:
    • Bold, Italic, Strikethrough, Underline, ==Highlight==, Links

⚙️ Usage

import markdown from "markdown-parser"; // import package

const markdownContent = "# Markdown Parser";

const html = markdown.parse(markdownContent);

console.log(html); // <h1>Markdown Parser</h1>

🧩 Ideal For

  • Static site generators
  • Blog engines
  • Custom content renderers
  • Markdown preview tools
  • Educational tools or online editors
1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago