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

markappend

v1.0.2

Published

Append markdown directly to DOM

Readme


{ "modules": [ "./src/live-editor.ts" ] }

🖋️ Append Markdown Directly in the DOM

MarkAppend is a fast, single-file Markdown parser designed for simplicity and performance. Unlike most Markdown parsers that generate HTML strings, MarkAppend modifies the DOM directly, making it ideal for dynamic web applications that need the best performance.

MarkAppend supports all the essential CommonMark features, skipping only the more esoteric rules that most users aren't aware of — mainly to keep the implementation simple(r).

👉 Usage

appendMarkdown is the only one exported function in the library. Its signature looks like this:

export function appendMarkdown(input: string, root: Element)

The input string parameter contains the markdown that is rendered under the root element.

🍰 Implementation

MarkAppend source is written in a literate style, which hopefully makes the code easier to decipher. You can explore the documentation generated from the source code here. The implementation uses regular expressions heavily and is very imperative in style. Special attention is paid to minimize string copying and unnecessary memory allocations.

As the Markdown syntax is inherently ill-defined and ambigious, parsing it inevitably becomes a convoluted process. Lot of custom code is needed to handle all the special cases. So, don't expect to find a beautiful and easy-to-follow implementation 💩

🪐 Extensibility

It's possible to extend the parser with new inline elements, by adding a new Parser. The parser constist of a regular expression and a matcher function that is called when the expresion is found in the input.

Below is an example, how to add support for equations using the AsciiMath2ML library.

import * as ma from 'markappend'
import * as am from 'asciimath2ml'

pr.addInlineParser({
    regexp: /(?<![\\$])(?<eqdelim>\$\$?)(?!\$)(?<eq>.+)(?<![\\$])\k<eqdelim>(?!\$)/.source,
    matched: (state, match) => {
        let { eqdelim, eq } = match.groups!
        let html = am.asciiToMathML(eq, eqdelim.length == 1)
        pr.appendHtml(state, html)
    }
})

🎙️ Live Editor

You can test MarkAppend with the live editor below.