MathML
A Plugin for MathML development in Sublime Text 3.x
Details
Installs
- Total 814
- Win 541
- Mac 181
- Linux 92
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
MathML-Sublime-Plugin
About
A Package for MathML syntax highlighting and basic snippets in Sublime Text 3.x
This package enforces a subset of the W3C MathML 3.0 standard, which can be found here.
Unlike HTML, MathML does NOT meaningfully allow arbitrary attributes on any and all tags, so don't expect it to highlight them. The package does currently support all presentation elements listed on MDN here. Nearly all valid attributes are also supported, albeit with exclusion of some deprecated MathML 2.0 features, and no support for xml namespace-included attributes. By default, highlighting is available in dedicated mathml files as well as inside special html files with the extensions:
* .mathml
(also .html.mathml
, somewhat reduntantly)
* .mathm
* .math
(also .html.math
, somewhat reduntantly)
* .mhtml
If you want highlighting for MathML inside of files without these extensions, use the command palette or select it from the menu under View -> Syntax -> MathML -> HTML (MathML)
I highly recommend checking out the MDN documentation for examples and reference materials when writing MathML - especially since Firefox is the only browser that natively supports MathML. A Chrome Extension which enables rendering of MathML within web pages is available here.
Installation
Package Control (Reccomended)
As of version 1.2.0, this package may be installed from Package Control, which is certainly easiest. The name of the package is “MathML”.
Manual
To install, clone or download this repository into your Packages directory (
%APPDAT%\SUBLIME TEXT 3\PACKAGES
on Windows or$HOME/.config/sublime-text-3/Packages
on Linux/macOS). For Linux/macOS users withgit
installed, enter these commands at a terminal:
cd $HOME/.config/sublime-text-3/Packages
- enter Packages directorygit clone git@github.com:Sensibility/MathML-Sublime-Plugin
- download the pluginmv MathML-Sublime-Plugin MathML
- rename package to something simpler (optional)
Then, if you want, remove any unnecessary files like e.g.
.gitignore
. Or don't. Should work either way.
Pre-packaged
As of version 1.2.0, full packages are available as compressed
.sublime-package
files under “Releases” (here). To install these files, place them in your “Installed Packages” directory (%APPDATA%\Sublime Text 3\Installed Packages
on Windows,$HOME/.config/sublime-text-3/Installed Packages/
on Linux/macOS)
Planned Features
Currently still in the works are the following features:
- Completions for supported elements
- More snippets (or possibly less if completions prove easier and faster)
- Enforced values for attributes, including
- Highlighting invalid values as illegal
- Highlighting missing units on values that require them as illegal
- Highlighting deprecated values as deprecated
- A linting system to check files to ensure that e.g. all
<mfrac>
tags have exactly two children, with a supporting build system - Content-MathML - This is essentially another markup language specified by MathML 3.0, meant to convey the meaning of mathematical formulae without providing a way to represent it (which is what Presentation-MathML is for).
- Annotations - Annotations provide extra information about math markup, and are often used to define alternative representations such as LaTeX code. I'd like to support some additional syntaxes if they exist, but I need to know more about the Sublime Package system first and so this is a relatively low priority.
- Preview - In files that contain only MathML (e.g. no HTML), show a preview of the equation. I'm not totally sure how difficult this would be and it's really the biggest (and stretchiest) of my stretch goals.