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

tiptap-novel-math

v0.2.0

Published

A Notion-like interactive math formula extension for Tiptap/Novel editor.

Readme

tiptap-novel-math

English | 简体中文

CI NPM Version License

A Notion-like, interactive mathematical formula extension for Tiptap and Novel.

🎮 Live Demo

This extension provides a seamless "Click to Edit" experience for LaTeX math formulas, supporting both inline ($E=mc^2$) and block ($$...$$) equations.

Features

  • 🖱️ Interactive Editing: Click any formula to open a popover editor with live preview.
  • ⌨️ Input Rules:
    • Type $$ + Space to insert a block equation.
    • Type $E=mc^2$ to automatically convert to an inline equation.
  • 📋 Smart Paste: Automatically detects LaTeX patterns in pasted text and converts them to math nodes.
  • 🤖 AI Paste Support: Robustly handles content pasted from LLMs (ChatGPT, DeepSeek), normalizing \(...\) and \[...\] formats automatically.
  • 📝 Markdown Serialization: Seamlessly integrates with tiptap-markdown to export formulas as standard LaTeX ($E=mc^2$).
  • 🔄 Block/Inline Toggle: Easily switch between display modes.
  • 🎨 Zero Styles: Uses standard Tailwind classes and unstyled primitives (Radix UI) for maximum customizability.

Installation

npm install tiptap-novel-math katex
# Peer dependencies
npm install @tiptap/core @tiptap/react react react-dom

Styles

With Tailwind CSS (recommended)

If your project uses Tailwind CSS, you just need to import KaTeX CSS:

import "katex/dist/katex.min.css";

Without Tailwind CSS

If your project does NOT use Tailwind CSS, you need to import our fallback styles as well:

import "katex/dist/katex.min.css";
import "tiptap-novel-math/styles.css";

Customization

You can customize the appearance by overriding CSS variables:

:root {
  --tnm-bg-hover: #f1f5f9;
  --tnm-ring-color: #000000;
  --tnm-popover-bg: #ffffff;
  --tnm-btn-primary-bg: #0f172a;
  /* See src/styles.css for all available variables */
}

Usage

Add the extension to your Tiptap editor configuration:

import { EditorContent, useEditor } from "@tiptap/react";
import StarterKit from "@tiptap/starter-kit";
import { Mathematics, MarkdownLatexParser } from "tiptap-novel-math";
import "katex/dist/katex.min.css";

const Editor = () => {
  const editor = useEditor({
    extensions: [
      StarterKit,
      Mathematics, // The main extension
      MarkdownLatexParser, // Optional: legacy support for complex paste scenarios
    ],
    content: "<p>Type $E=mc^2$ to see magic!</p>",
  });

  return <EditorContent editor={editor} />;
};

Toolbar Button

You can easily add a button to toggle math mode:

const MathButton = ({ editor }) => {
  if (!editor) return null;

  return (
    <button
      onClick={() => {
        const { from, to } = editor.state.selection;
        const latex = editor.state.doc.textBetween(from, to);
        
        if (!editor.isActive("math")) {
            editor.chain().focus().setLatex({ latex }).run();
        } else {
            editor.chain().focus().unsetLatex().run();
        }
      }}
    >
      ∑ Math
    </button>
  );
};

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for more details.

License

MIT