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 🙏

© 2024 – Pkg Stats / Ryan Hefner

gitbook-plugin-mathjax-commonhtml

v0.0.6

Published

MathJax integration into GitBook using MathJax's CommonHTML output processor, which is processed in the server side.

Downloads

12

Readme

MathJax CommonHTML server-side rendering for GitBook

This plugin uses MathJax in the server side using CommonHTML output.

Installation

Add the plugin into book.json or book.js, e.g.

{
    plugins: ["mathjax-commonhtml"]
}

Configuration

This plugin scales the TeX font in MathJax automatically in the default set up. If you do not modify GitBook font settings (not something that a beginner can do), then you do not need to configure this plugin.

However, if you are using custom fonts in your book, or disables the fontsettings plugin, then default setting will not work.

In this case, you can disable automatic scaling by adding the following to book.json or book.js.

{
    "pluginsConfig": {
        "mathjax-commonhtml": {
            "defaultScaling": false
        }
    }
}

You can manually scale MathJax TeX fonts by adding the following CSS:

body .mjx-chtml, .page .section .mjx-chtml { font-size: 116%; }

body .mjx-chtml is used for web site, and .page .section .mjx-chtml is used for ebook.

You should set the font size to match the x-height of your current font. To know the percentage you need, check this CodePen

Usage

The usage of this plugin is the same as the official MathJax and KaTeX plugins.

The following are the instructions copied from KaTeX plugin:

Inline math: $$\int_{-\infty}^\infty g(x) dx$$


Block math:

$$
\int_{-\infty}^\infty g(x) dx
$$

Or using the templating syntax:

{% math %}\int_{-\infty}^\infty g(x) dx{% endblock %}

Why use this plugin instead of the official plugins?

This plugin has the TeX support of MathJax and the speed of KaTeX.

Comparing with MathJax: mathjax-commonhtml generates the math server-side, while the official MathJax plugin generates the math client-side. It means that the web pages load much faster with this plugin.

Comparing with KaTeX: KaTeX supports only a limited set of TeX syntax, and spacing of equation environments are suboptimal. This plugin, which is based on MathJax, does not have this limitation.

Known problems

Currently gitbook PDF and ebook generation does not work. The problem appears to be Calibre (the ebook generator) intercepting MathJax generated tags. If you are interested in creating PDF files for printing, I recommend my sister project �gitbook-pdfgen� though, which works nice with this plugin.

Report bugs / Contributions