https://github.com/jupyter-server/jupyter_server_mathjax
Jupyter Server extension for serving Mathjax
https://github.com/jupyter-server/jupyter_server_mathjax
Last synced: 3 months ago
JSON representation
Jupyter Server extension for serving Mathjax
- Host: GitHub
- URL: https://github.com/jupyter-server/jupyter_server_mathjax
- Owner: jupyter-server
- License: bsd-3-clause
- Created: 2021-01-07T17:18:17.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-14T16:24:37.000Z (almost 3 years ago)
- Last Synced: 2025-03-17T07:51:24.036Z (3 months ago)
- Language: Python
- Size: 36.1 KB
- Stars: 4
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MathJax resources endpoints for Jupyter Server

## Basic Usage
Install from PyPI:
```sh
> pip install jupyter_server_mathjax
```This will automatically enable the extension in Jupyter Server.
To test the installation, you can run Jupyter Server and visit the `/static/jupyter_server_mathjax/MathJax.js` endpoint:
```sh
> jupyter server
```## Maintenance Notes
To install an editable install locally for development, first clone the repository locally,
then run:```sh
`pip install -e .[test]`
```Note that the editable install will not install the data file that
automatically configures the extension for use. To manually enable it, run:```sh
jupyter server extension enable --py jupyter_server_mathjax
```To build for distribution, use the `build` package:
```sh
pip install build
python -m build
```Then release using twine:
```sh
twine check dist/*
twine check dist/*
```