npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mr_markdown_builder

v2.0.0

Published

A fork of the famous markdown builder for node with enhancements.

Readme

Introduction

A fork of the venerable yet archived markdown-builder with improvements including, but not limited to:

  • Tables
  • Quotes
  • Task lists
  • Inline code blocks
  • Long code blocks
  • Badges from shields.io
  • GeoJson and TopoJson support
  • Collapsible summary/details blocks The motivation behind maintaining this fork is to use the result in the Mediumroast, Inc. application and we did not want to start a new module from scratch when this one already exixted.

Usage

npm install --save mr_markdown_builder

Using mr_markdown_builder:

const markdown = require('mr_markdown_builder')

markdown.hX(3, '3rd Header') // ### 3rd Header

API

All functions are exported flat on the top-level module — there are no headers/emphasis/lists/misc namespaces to destructure.

Headers

Use the h1,h2,h3,h4,h5,h6 or hX to generate a markdown header. Calling hX with a level above 6 returns a h6 Header.

const markdown = require('mr_markdown_builder')

markdown.h1('1st Header') // # 1st Header
markdown.h2('2nd Header') // ## 2nd Header
markdown.h3('3rd Header') // ### 3rd Header
markdown.hX(5, '5th Header using hX') // ##### 5th Header using hX

Emphasis

const markdown = require('mr_markdown_builder')

markdown.b('bold text')
markdown.i('italic text')
markdown.s('strikethrough text')
markdown.ic('inline code block text')
markdown.cb('long code block text')
markdown.cb('const x = 1', 'js') // fenced with a language tag, for syntax highlighting

Lists

const markdown = require('mr_markdown_builder')

let a = ['Item 1', 'Item 2']
// ordered list
markdown.ol(a)
// 1. Item 1
// 2. Item 2
markdown.ol(a, (item) => item.toUpperCase()) // use callbacks to alter each item
// 1. ITEM 1
// 2. ITEM 2

// unordered List
markdown.ul(a)
markdown.ul(a, (item) => item.toUpperCase())

// task list — pass plain strings for unchecked items, or { text, checked } for a mix
markdown.tl(a)
markdown.tl(a, (item) => item.toUpperCase())
markdown.tl([{ text: 'Done', checked: true }, { text: 'Not done', checked: false }])
// - [x] Done
// - [ ] Not done

// Nesting: embed a rendered ul()/ol()/tl() call inside an item's text —
// continuation lines are automatically indented to stay part of that item
markdown.ul([`Parent item\n${markdown.ul(['Nested A', 'Nested B']).trimEnd()}`])
// * Parent item
//   * Nested A
//   * Nested B

Tables

const markdown = require('mr_markdown_builder')

// header separator defaults to unaligned columns
markdown.tableHeader(['Name', 'Role'])

// pass 'left', 'center', or 'right' per column to align it
markdown.tableHeader(['Name', 'Role'], ['left', 'center'])

Miscellaneous

const markdown = require('mr_markdown_builder')

// Images
let alt = 'image of lights', url = 'https://www.w3schools.com/w3css/img_lights.jpg', title = 'lights'
markdown.image(alt, url)
markdown.image(alt, url, title)

// Collapsible summary/details block
markdown.collapsible('Summary', 'content');

// Github Anchor
markdown.anchor('A header with /*() special-characters!'); // #a-header-with--special-characters

// Link
markdown.link('Github', 'https://github.com/flxwu')

// horizontal rule
markdown.hr()

// Quote (each line of a multi-line string is prefixed)
markdown.quote('A quote')
markdown.quote('Line 1\nLine 2')

// GitHub alert: a blockquote with a [!TYPE] marker. type must be one of
// NOTE, TIP, IMPORTANT, WARNING, or CAUTION
markdown.alert('NOTE', 'Something worth calling out.')

// Footnotes: an inline reference, and the definitions block rendered wherever
// you place it (there's no auto-numbering — you supply each id)
markdown.footnoteRef('1') // [^1]
markdown.footnoteDefs([{ id: '1', text: 'The footnote text.' }]) // [^1]: The footnote text.

// Named anchor, independent of any heading
markdown.namedAnchor('my-anchor') // <a name="my-anchor"></a>

// Underline, subscript, superscript (GFM has no dedicated syntax, so these render as HTML)
markdown.ins('underlined')
markdown.sub('subscript')
markdown.sup('superscript')

// Force a hard line break within a paragraph
markdown.br()

// GitHub shorthand
markdown.mention('octocat') // @octocat
markdown.issueRef(42) // #42
markdown.emoji('tada') // :tada:
markdown.colorSwatch('#1d9bf0') // `#1d9bf0` — GitHub renders a swatch next to a valid hex/rgb/hsl value

// Math (LaTeX)
markdown.mathInline('E = mc^2') // $E = mc^2$
// mathBlock() prepends a blank line: unlike fenced code blocks, GitHub's $$
// delimiter doesn't interrupt a paragraph, so without one it gets absorbed
// into whatever text comes before it instead of rendering as a math block
markdown.mathBlock('E = mc^2') // \n\n$$\nE = mc^2\n$$\n

// Hide content in the rendered output
markdown.comment('not visible when rendered')

Collapsible:

Diagrams

const markdown = require('mr_markdown_builder')

// GeoJSON: GitHub renders a fenced ```geojson``` block as an interactive map
markdown.geojson({ type: 'Feature', geometry: { type: 'Point', coordinates: [-117.08, 32.93] }, properties: {} })

// TopoJSON, same idea
markdown.topojson({ type: 'Topology', objects: {}, arcs: [] })

// Mermaid: GitHub renders a fenced ```mermaid``` block as a diagram
markdown.mermaid('graph TD;\n  A-->B;')

Examples

Every file under examples/ is generated by a script that calls this module — none of it is hand-written. See the Examples Index for the full list at a glance, or regenerate everything at once with:

npm run examples

Individually:

  • Feature Showcase — every exported function, in one page (node examples/feature-showcase.js)
  • Headers & Emphasis — including fenced code blocks with a syntax-highlighting language tag (node examples/headers-and-emphasis.js)
  • Lists — ordered, unordered, and task lists, including checked task items and nesting (node examples/lists-example.js)
  • Tables — with and without column alignment (node examples/tables-example.js)
  • Links, Images & Miscellaneous — links, images, anchors, quotes, GitHub alerts, footnotes, badges, underline/sub/superscript, hard breaks, mentions, issue refs, emoji, color swatches, math, and comments (node examples/links-and-media.js)
  • Diagrams: GeoJSON, TopoJSON & Mermaid (node examples/geoblocks-example.js)
  • Company Directory — a more elaborate, real-world example built from JSON company/interaction data (node examples/index.js)