summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-06-11 11:10:13 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-06-11 11:10:13 -0700
commitc5189b749bcc6a65d4209b2e401e0425597d2bb7 (patch)
tree16ac8a2dd9c4c25a2f5b7cd1bedd097486917c84 /test
parent9f8ef820301951f36301c1a40d036cafeaa78619 (diff)
Removed meta from list of block tags.
Added regression test. See commonmark/CommonMark#527.
Diffstat (limited to 'test')
-rw-r--r--test/regression.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/regression.txt b/test/regression.txt
index a6669d0..7a859a4 100644
--- a/test/regression.txt
+++ b/test/regression.txt
@@ -92,3 +92,17 @@ Issue #192 - escaped spaces in link destination
.
<p>[a](te\ st)</p>
````````````````````````````````
+
+Issue #527 - meta tags in inline contexts
+
+```````````````````````````````` example
+City:
+<span itemprop="contentLocation" itemscope itemtype="https://schema.org/City">
+ <meta itemprop="name" content="Springfield">
+</span>
+.
+<p>City:
+<span itemprop="contentLocation" itemscope itemtype="https://schema.org/City">
+ <meta itemprop="name" content="Springfield">
+</span></p>
+````````````````````````````````