GitHub Adds Native Math Rendering to Markdown
GitHub today announced native support for mathematical expressions in Markdown, ending an eight-year wait for the feature. The capability, first requested in 2016, lets users embed TeX and LaTeX-style math directly in issues, pull requests, and wikis.
Engineers, scientists, and data scientists can now wrap expressions in single $ for inline math or double $$ for display blocks. GitHub renders those formulas using the widely adopted MathJax library, so syntax familiar from prior TeX workflows carries over without new tooling.
Here's a quick example. The following Markdown source,
When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
produces a clean, typeset equation when viewed on GitHub:

Full syntax guidance and formatting options are available in the official documentation. GitHub expects strong uptake across its community of technical users.



