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

@trevixal/extension-math

v1.0.5

Published

Math for the Trevixal editor: inline and display LaTeX equations rendered to MathML, with an input rule and a pluggable renderer.

Downloads

525

Readme

@trevixal/extension-math

CI npm types license

Documentation · Live editor · Changelog · Issues

The Trevixal editor

Features

  • Inline and display LaTeX, rendered to MathML
  • An input rule and a pluggable renderer
  • 7.7 kB minified and gzipped, with TypeScript types in the package

LaTeX equations rendered to MathML, inline and display, with no runtime dependency and nothing to download.

npm install @trevixal/extension-math

Usage

Merge the nodes into your schema:

new Schema({ nodes: { ...defaultNodes(), ...mathNodes() }, marks: defaultMarks() })
import { mathInputRules, insertMath, insertMathBlock, latexToMathML } from '@trevixal/extension-math'
import { defaultInputRules } from '@trevixal/core'

const editor = createEditor({
  schema,
  element,
  inputRules: [...defaultInputRules(), ...mathInputRules()], // enables `$…$`
})

editor.exec(insertMath('E = mc^2'))
editor.exec(insertMathBlock('\\int_0^1 x^2\\,dx = \\frac{1}{3}'))
latexToMathML('\\sqrt{a^2 + b^2}') // '<math>…</math>'

What the converter covers

Fractions and roots, sub- and superscripts, matrices and environments, large operators with limits, accents, stretchy delimiters, spacing commands, Greek in both cases, blackboard bold and script, and a symbol table of several hundred names.

It is written here rather than pulled in, so an equation costs no network request and renders the moment the document does, which also means it renders in an export, where a script would not run.

The $…$ rule

Typing the closing $ converts the run. The rule ignores $$, so display math typed by hand is left for the block command, and an escaped \\$ never counts as a delimiter. It does not fire inside a code block, where $x$ is text somebody meant to keep.

A different renderer

mathNodes({ render }) takes any (latex, display) => string, so KaTeX or MathJax can be dropped in where the output must match a house style. The default is defaultMathRenderer.

The result is inserted as trusted markup, so a renderer is responsible for escaping every part of the source it echoes back.

License

Apache-2.0