File: __init__.py

package info (click to toggle)
jupyter-server-mathjax 0.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: python: 126; javascript: 73; makefile: 12
file content (10 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

from .app import MathJaxExtension


def _jupyter_server_extension_points():
    return [
        {"module": "jupyter_server_mathjax", "app": MathJaxExtension},
    ]