Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Last active March 22, 2021 00:25
Show Gist options
  • Save kwilczynski/85ebff63ba135ff72bf3631cae4169f1 to your computer and use it in GitHub Desktop.
Save kwilczynski/85ebff63ba135ff72bf3631cae4169f1 to your computer and use it in GitHub Desktop.
Scala documentation markdown italics issue

Problems with italics and the code blocks (inline or otherwie).

Given:

`test _test_`

```
test _test_
```

`test <i>test</i>`

`test <pre><i>test</i></pre>`

<code>test <i>test</i> </code>

<pre><code>test <i>test</i> </code></pre>

The result is:

test _test_

test _test_

test <i>test</i>

test <pre><i>test</i></pre>

test test

test test 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment