... | ... | @@ -111,3 +111,81 @@ $$ |
|
|
|
|
|
|
|
|
Inline `code` has `back-ticks around` it.
|
|
|
|
|
|
|
|
|
A footnote reference tag looks like this: [^1]
|
|
|
|
|
|
This reference tag is a mix of letters and numbers. [^footnote-42]
|
|
|
|
|
|
[^1]: This text is inside a footnote.
|
|
|
|
|
|
[^footnote-42]: This text is another footnote.
|
|
|
|
|
|
|
|
|
Alt-H1
|
|
|
======
|
|
|
|
|
|
Alt-H2
|
|
|
------
|
|
|
|
|
|
|
|
|
|
|
|
# This heading has spaces in it
|
|
|
## This heading has a :thumbsup: in it
|
|
|
# This heading has Unicode in it: 한글
|
|
|
## This heading has spaces in it
|
|
|
### This heading has spaces in it
|
|
|
## This heading has 3.5 in it (and parentheses)
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
***
|
|
|
|
|
|
___
|
|
|
|
|
|
|
|
|
|
|
|
<dl>
|
|
|
<dt>Definition list</dt>
|
|
|
<dd>Is something people use sometimes.</dd>
|
|
|
|
|
|
<dt>Markdown in HTML</dt>
|
|
|
<dd>Does *not* work **very** well. HTML <em>tags</em> do <b>work</b>, in most cases.</dd>
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
It’s still possible to use Markdown inside HTML tags, but only if the lines containing Markdown are separated into their own lines:
|
|
|
|
|
|
<dl>
|
|
|
<dt>Markdown in HTML</dt>
|
|
|
<dd>Does *not* work **very** well. HTML tags work, in most cases.</dd>
|
|
|
|
|
|
<dt>Markdown in HTML with proper spacing</dt>
|
|
|
<dd>
|
|
|
|
|
|
Does *not* work **very** well. HTML tags work, in most cases.
|
|
|
|
|
|
</dd>
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<details>
|
|
|
<summary>
|
|
|
|
|
|
Click to _expand._
|
|
|
|
|
|
</summary>
|
|
|
|
|
|
These details _remain_ **hidden** until expanded.
|
|
|
|
|
|
```
|
|
|
PASTE LOGS HERE
|
|
|
```
|
|
|
|
|
|
</details> |
|
|
\ No newline at end of file |