![]() |
Qucs-S S-parameter Viewer & RF Synthesis Tools
|
Functions | |
| None | amsmath_plugin (MarkdownIt md, *Callable[[str], str]|None renderer=None) |
| bool | amsmath_block (StateBlock state, int startLine, int endLine, bool silent) |
Variables | |
| list | ENVIRONMENTS |
| str | RE_OPEN = r"\\begin\{(" + "|".join(ENVIRONMENTS) + r")([\*]?)\}" |
An extension to capture amsmath latex environments.
| None mdit_py_plugins.amsmath.amsmath_plugin | ( | MarkdownIt | md, |
| *Callable[[str], str] | None | renderer = None |
||
| ) |
Parses TeX math equations, without any surrounding delimiters,
only for top-level `amsmath <https://ctan.org/pkg/amsmath>`__ environments:
.. code-block:: latex
\\begin{gather*}
a_1=b_1+c_1\\\\
a_2=b_2+c_2-d_2+e_2
\\end{gather*}
:param renderer: Function to render content, by default escapes HTML
| list mdit_py_plugins.amsmath.ENVIRONMENTS |