KaTeX VS remark

Compare KaTeX vs remark and see what are their differences.

remark

markdown processor powered by plugins part of the @unifiedjs collective (by remarkjs)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
KaTeX remark
50 42
17,695 7,187
1.0% 1.9%
7.1 6.9
4 days ago 14 days ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

KaTeX

Posts with mentions or reviews of KaTeX. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-12.
  • KaTeX-Compatible Test File
    1 project | /r/LaTeX | 11 Dec 2023
    I want to resolve this KaTeX issue, so in order to test my ideas, is there some LaTeX test file with just a lot of equations, preferably inline (since this issue is related to inline math) but without fancy libraries or stuff not included in KaTeX?
  • MathJax – Beautiful and accessible math in all browsers
    9 projects | news.ycombinator.com | 12 Oct 2023
    > Could you elaborate on why you switched away from it?

    I started using KaTeX sometime after 2015 because it promised to be fast (the fastest! [1]). I had to change the representation of a bunch of expressions because KaTeX didn't support some environments, whilst MathJax did. It was a trade-off I was willing to accept at the time.

    Many years later, I started writing a personal static-site generator. I wanted comparatively lightweight pages, so rendering server-side was an option. I re-evaluated MathJax vs KaTeX again and this time I leaned towards MathJax, as speed was no longer an issue for me. It looks like KaTeX has broader support now [2].

    [1] https://katex.org

    [2] https://katex.org/docs/support_table.html

  • Markup of math expressions using SwiftUI or UIKit - How's it possible?
    3 projects | /r/swift | 9 Jul 2023
    Another alternative: Create a WebView by using UIViewRepresentable and Webkit together with MathJax or Katex where Katex is the better option. Here is a link to katex: https://katex.org/
  • How to put html input fields into LaTeX vector parenthesis? (with katex properly rendering)
    1 project | /r/LaTeX | 28 May 2023
    This isn't a LaTeX question. It's a web dev question. Probably best directed at folks who make (or use) KaTeX.
  • Quick Questions: May 24, 2023
    1 project | /r/math | 27 May 2023
    KaTeX
  • [Math] HTML + Katex vs PDF + Latex
    1 project | /r/enfrancais | 10 May 2023
    (1) [https://katex.org/
  • How do I do this?
    4 projects | /r/webdev | 20 Apr 2023
    If you want to make it from scratch, go with https://www.slatejs.org/examples/richtext, then use something like https://katex.org/ for rendering the LaTeX, and maybe Mathjs.org for plotting.
  • The fastest math typesetting library for the web
    1 project | /r/hypeurls | 16 Apr 2023
    7 projects | news.ycombinator.com | 16 Apr 2023
    The speed of KaTeX is great, but the lack of support for diagrams (a la tikz-cd) is what makes KaTeX unsuitable for general adoption by mathematicians (e.g., mathoverflow.net and all online mathematical wiki I know use MathJax). KaTeX has some rudimentary support for diagrams though the {CD} environment, but something more fully fledged akin to tizk-cd or xymatrix is needed. There's been some discussion on their github (https://github.com/KaTeX/KaTeX/issues/219), but I wouldn't hold my breath.
  • What's the easiest way to display equations with LaTeX in HTML?
    1 project | /r/webdev | 5 Mar 2023
    Haven't personally used it, but have heard of KaTeX

remark

Posts with mentions or reviews of remark. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-11.
  • Which software do you use to create presentations using Vim that is superior to existing ones?
    10 projects | /r/neovim | 11 Dec 2023
    I also didn't try this tool but it's called RemarkJS which is named too similar to revealjs.
  • How We Started Managing BSA Delivery Processes on GitHub
    6 projects | dev.to | 26 Nov 2023
    remark. Primarily, this is a linter for Markdown. Additionally, thanks to its numerous plugins, it allows us to perform additional checks for grammatical mistakes within the content itself. Before using this linter, our content was not scrutinized to this extent.
  • I built an Markdown editor using Next.js and TailwindCss 🔥
    5 projects | dev.to | 14 Nov 2023
    Rehype and Remark are plugins used to transform and manipulate the HTML and Markdown content of a website, helping to enhance its functionality and appearance.
  • how to retain position of markdown element in remark.js
    3 projects | dev.to | 4 Sep 2023
    I usually combine remark-parse, remark-rehype and rehype-react to transform markdown into react components. The configuration of the processor is like:
  • Building an Astro Blog with View Transitions
    5 projects | dev.to | 24 Aug 2023
    Astro content collection are as simple as a folder containing a bunch of Markdown (or Markdoc or MDX) files if that's the only thing you need, but they can also do relationship matching between different collections, frontmatter validation using zod and you can also customize how the markdown is parsed and translated to html using rehype and remark and their plugin ecosystem.
  • Simple markdown plugin to open external links in a new tab
    2 projects | dev.to | 4 Jun 2023
    On my personal blog I have few external links in my posts. I wanted to keep people on my website by applying target="_blank" on external (those what don't reference to my site) links. This is a common and good practice too. I write my content in Markdown, so I decided to write a remark plugin. It is simple to implement, just few lines of code.
  • Create an Interactive Table of Contents for a Next.js Blog with Remark
    5 projects | dev.to | 21 Apr 2023
    Although we are building a custom table of contents, we won't have to write everything from scratch. To separate the Markdown/MDX content from the front matter, we'll use the Gray-matter package. It is optional in case you don't have front matter in your Markdown files. To process the Markdown itself, we'll use the Remark package. We'll also need the unist-util-visit package for traversing node trees and mdast-util-to-string for getting the text content of a node.
  • How to integrate your blog with dev.to API Next.js 13
    5 projects | dev.to | 16 Feb 2023
    That's all to render the post as HTML, there are lots of things you can do to customize the results, you can check the remark plugins and rehype plugins to pass as props to and you can also take a look at some other bloggers if you're looking for different styles for example Lee Robinson's or if you liked mine.
  • Contentlayer with next/image
    11 projects | dev.to | 4 Jan 2023
    contentlayer uses remark to parse the markdown in an mdast. We can now use remark plugins to modify the mdast. Then rehype comes into play and converts the mdast into a hast. rehype plugins can now modify the hast. Finally the hast is converted into react components.
  • Serving Docusaurus images with Cloudinary
    3 projects | dev.to | 25 Dec 2022
    Now we have our Cloudinary account set up, we can use it with Docusaurus. To do so, we need to create a remark plugin. This is a plugin for the remark markdown processor. It's a plugin that will transform the markdown image syntax into a Cloudinary URL.

What are some alternatives?

When comparing KaTeX and remark you can also consider the following projects:

MathJax - Beautiful and accessible math in all browsers

marked - A markdown parser and compiler. Built for speed.

quiver - A modern commutative diagram editor for the web.

markdown-it - Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed

nerdamer - a symbolic math expression evaluator for javascript

rehype - HTML processor powered by plugins part of the @unifiedjs collective

latex2mathml - Pure Python library for LaTeX to MathML conversion

react-markdown - Markdown component for React

manim - A community-maintained Python framework for creating mathematical animations.

gray-matter - Smarter YAML front matter parser, used by metalsmith, Gatsby, Netlify, Assemble, mapbox-gl, phenomic, vuejs vitepress, TinaCMS, Shopify Polaris, Ant Design, Astro, hashicorp, garden, slidev, saber, sourcegraph, and many others. Simple to use, and battle tested. Parses YAML by default but can also parse JSON Front Matter, Coffee Front Matter, TOML Front Matter, and has support for custom parsers. Please follow gray-matter's author: https://github.com/jonschlinkert

kramdown - kramdown is a fast, pure Ruby Markdown superset converter, using a strict syntax definition and supporting several common extensions.

micromark - small, safe, and great commonmark (optionally gfm) compliant markdown parser