markup icon indicating copy to clipboard operation
markup copied to clipboard

Determines which markup library to use to render a content file (e.g. README) on GitHub

Results 288 markup issues
Sort by recently updated
recently updated
newest added

@bkeepers : FYI people are continually asking for coloured text in this closed issue: https://github.com/github/markup/issues/369

For `commonmarker`, it is already possible to pass in parsing and rendering options in the `GitHub::Markup.render` call, e.g.: ```ruby GitHub::Markup.render("test.md", "hello world", options: {commonmarker_opts: [:UNSAFE]}) ``` This PR adds support...

GitHub seems to set the `prefers-color-scheme` CSS property to `dark` when using the light default in Night theme. Using the example from [github docs](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#specifying-the-theme-an-image-is-shown-to): ``` ``` This renders as: ![image](https://user-images.githubusercontent.com/4416605/184545845-4b4745e5-8dc2-433d-94ee-e781b8d4a2a3.png)...

I have a use case where I publishes SVG files to github releases and would like them visible inside a markdown readme. This worked before when we used PNGs but...

Multiple subscripts in combination with curly brackets in LaTeX-based math expressions don't render as expected. Single underscore with curly brackets works fine: `\mathbf{x}_{i,j} = \mathbf{y}` renders as $\mathbf{x}_{i,j} = \mathbf{y}$....

Which version of Org-Ruby is used on Github? The Org-Ruby listed in the Gemfile is shown as version 0.9.9 which is quite old. Could you bump it up if you...

When changing formats from mkv to mp4 format by renaming the file, I can't play the video on the desktop but it works fine on the android browser what is...

Separate `\sum_{p=0}^P M_p^i` is ok: $$\sum_{p=0}^P A_p$$ Combined with `\over`: $${ \sum_{p=0}^{P} A_p \over B}$$ Combined with `\frac`: $$\frac{ \sum_{p=0}^{P} A_p}{B}$$ I believe this is also could be related to...

``` $$ S = \{ s: s \in S\} $$ ``` get's rendered as $$ S = \{ s: s \in S\} $$ (same for inline). The correct rendering is...

reStructuredText includes facilities for marking up mathematical expressions, just like [GitHub-flavoured markdown][1] does: [1]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/writing-mathematical-expressions Syntax Markdown reStructuredText Block syntax $$ ... $$ `.. math::` Inline syntax $ ... $...