1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
markdown-it-attr/test/cases/escape.txt
2021-01-12 20:05:19 +09:00

21 lines
174 B
Text

block
.
\{#a.b}
# c d
\{e=f}
## g h
.
<p>{#a.b}</p>
<h1>c d</h1>
<p>{e=f}</p>
<h2>g h</h2>
.
inline
.
# c d \{#a.b}
## g h \{e=f}
.
<h1>c d {#a.b}</h1>
<h2>g h {e=f}</h2>
.