banyan / katex-github-chrome-extension

A Chrome extension to display LaTeX flavoured math in GitHub Markdown previews.

Home Page:https://chrome.google.com/webstore/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KaTeX GitHub Chrome Extension

Chrome Web Store version Chrome Web Store users code style: prettier MIT license

Display LaTeX flavoured math in GitHub Markdown previews.

If this is installed correctly, the following should show a properly rendered equation in the centre of the page:

$$ \nabla L_D(\vec{w}) = \left[ \frac{\partial L_D}{\partial w_0},\dots, \frac{\partial L_D}{\partial w_n} \right] $$

Features

  • Only targets Markdown previews: code blocks and code previews will not be affected
  • Fast and efficient rendering using KaTeX
  • Supports current GitHub website: including internal navigations, and when previewing an edited Markdown file

Installing

Chrome Web Store version

Install via the Chrome Web Store.

Developer guide

Dependencies

This project is bootstrapped using rollup-plugin-chrome-extension. All code is written in the src folder, and the main point of entry is the src/index.js file.

The auto-render extension is used to recursively search for all text nodes and replace them with the corresponding rendered math.

As per the docs, the css and font files must be included in dist. As such, rollup-plugin-copy is used to copy the KaTeX fonts and css located in node_modules to the src/assets folder. These files are referenced in src/manifest.json, and will be automatically included in dist after running yarn build.

Note: files in the src/assets folder SHOULD NOT be modified. Any modifications will be overwritten when building the files anyway.

Local development

# install all dependencies
$ yarn
# build non-minified bundle to /dist
$ yarn build
# watch for changes and build non-minified bundle to /dist; use this for developing
$ yarn watch

Head over to chrome://extensions/, and load the dist folder.

Publishing

# build minified bundle and zip it for chrome store upload
$ yarn build:prod

After running the above command, the built .zip file should be located in the /releases directory, which can then be uploaded to the Chrome webstore.

Edit version in package.json; edit chrome extension's name and description in manifest.json.

Known issues

(FIXED) Newlines using double backslashes \\ may not render correctly

FIX: custom macros are provided to the katex options such that every single backslash is macroed to a double backslash.

GitHub's Markdown automatically escapes the double backslash, resulting in only a single backslash in the output HTML.

% in original Markdown file:
$$
x = 23 \\
x + 2 = 25
$$

% would result in HTML as:
$$ x = 23 \ x + 2 = 25 $$

Examples

Raw Rendered Working?
$1 \\ 2$ $1 \ 2$ ✔️
$1\\ 2$ $1\ 2$ ✔️
$1\\2$ $1\2$ ✔️

(FIXED) Subscripts using _ may not render correctly

FIX: see AaronCQL#2

% in original Markdown file:
$ \text{H}_h + X_\text{x} $

% would result in HTML as:
$ \text{H}<em>h + X</em>\text{x} $

Examples

Raw Rendered Working?
$H_h + X_x$ $H_h + X_x$ ✔️
$\text{H}_h + X_\text{x}$ $\text{H}h + X\text{x}$ ✔️

Contributing

Feature requests, bug reports, and PRs are welcome!

License

MIT License

About

A Chrome extension to display LaTeX flavoured math in GitHub Markdown previews.

https://chrome.google.com/webstore/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda

License:MIT License


Languages

Language:JavaScript 100.0%