Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Classes | Variables
docutils.utils.math.mathml_elements Namespace Reference

Classes

class  math
 
class  MathElement
 
class  MathRow
 
class  MathSchema
 
class  MathToken
 
class  menclose
 
class  merror
 
class  mfrac
 
class  mi
 
class  mn
 
class  mo
 
class  mover
 
class  mpadded
 
class  mphantom
 
class  mroot
 
class  mrow
 
class  mspace
 
class  msqrt
 
class  mstyle
 
class  msub
 
class  msubsup
 
class  msup
 
class  mtable
 
class  mtd
 
class  mtext
 
class  mtr
 
class  munder
 
class  munderover
 

Variables

tuple GLOBAL_ATTRIBUTES
 

Detailed Description

MathML element classes based on `xml.etree`.

The module is intended for programmatic generation of MathML
and covers the part of `MathML Core`_ that is required by
Docutil's *TeX math to MathML* converter.

This module is PROVISIONAL:
the API is not settled and may change with any minor Docutils version.

.. _MathML Core: https://www.w3.org/TR/mathml-core/

Variable Documentation

◆ GLOBAL_ATTRIBUTES

tuple docutils.utils.math.mathml_elements.GLOBAL_ATTRIBUTES
Initial value:
1= (
2 'class', # space-separated list of element classes
3 # 'data-*', # custom data attributes (see HTML)
4 'dir', # directionality ('ltr', 'rtl')
5 'displaystyle', # True: normal, False: compact
6 'id', # unique identifier
7 # 'mathbackground', # color definition, deprecated
8 # 'mathcolor', # color definition, deprecated
9 # 'mathsize', # font-size, deprecated
10 'nonce', # cryptographic nonce ("number used once")
11 'scriptlevel', # math-depth for the element
12 'style', # CSS styling declarations
13 'tabindex', # indicate if the element takes input focus
14 )