markup
markup copied to clipboard
Determines which markup library to use to render a content file (e.g. README) on GitHub
Right now, all ampersand-HTML characters are supported _except_ - ` ` (converted to breaking space, > ­
Inline Latex snippets like $\frac{1}{x} = x^{-1}$ are not rendered in markdown footnotes. [^1][^2] [^1]: See $\frac{1}{x} = x^{-1}$ [^2]: See also https://github.com/orgs/community/discussions/55227
Install the "markdown" Package on Ubuntu
MWE: ```markdown - $a$ $$ a $$ - $$ b $$ ``` Output: --- - $a$ $$ a $$ - $$ b $$ --- Screenshot (Nov 15, 2023):  This...
GitHub `$`-style math is not properly escaped, e.g., ``` $$ \{a\}\\ a \, b\\ a \: b\\ a \> b\\ a \; b\\ a \! b $$ ``` Output: ---...
GitHub's `$`-math is sometimes mixed up with HTML tags despite it being protected by `$`-delimiters. This leads to issues like ``` $$ a c $$ ``` Output: --- $$ a...
The first example from [the announcement blog post](https://github.blog/2022-05-19-math-support-in-markdown/) doesn't work. ```markdown When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are...
MWE: `$`-style math cannot be preceeded by most characters. ``` $x$ a$x$ 1$x$ -$x$ '$x$ "$x$ ($x$ [$x$ {$x$ /$x$ ``` $x$ a$x$ 1$x$ -$x$ '$x$ "$x$ ($x$ [$x$ {$x$...
MWE: ``` -  - $x$ ``` -  - $x$ Screenshot (Nov 15, 2023): 
Subsequent `$`- and `$$`-style math fails to render. MWE: ```markdown $\alpha$$\beta$ $$ \gamma $$ $$ \delta $$ ``` $\alpha$$\beta$ $$ \gamma $$ $$ \delta $$ Screenshot (Nov 15, 2023): ...