Skip to content

Commit a5cef11

Browse files
committed
Link tests to related issue
1 parent 008b8e0 commit a5cef11

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_syntax/extensions/test_md_in_html.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,7 @@ def test_md1_code_void_tag_multiline(self):
12751275
)
12761276

12771277
def test_md1_oneliner_block(self):
1278+
# https://github.com/Python-Markdown/markdown/issues/1074
12781279
self.assertMarkdownRenders(
12791280
self.dedent(
12801281
'<div class="outer" markdown="block"><div class="inner" markdown="block">*foo*</div></div>'
@@ -1288,6 +1289,7 @@ def test_md1_oneliner_block(self):
12881289
)
12891290

12901291
def test_md1_oneliner_block_mixed(self):
1292+
# https://github.com/Python-Markdown/markdown/issues/1074
12911293
self.assertMarkdownRenders(
12921294
self.dedent(
12931295
"""
@@ -1313,6 +1315,7 @@ def test_md1_oneliner_block_mixed(self):
13131315
)
13141316

13151317
def test_md1_oneliner_block_start(self):
1318+
# https://github.com/Python-Markdown/markdown/issues/1074
13161319
self.assertMarkdownRenders(
13171320
self.dedent(
13181321
"""
@@ -1330,6 +1333,7 @@ def test_md1_oneliner_block_start(self):
13301333
)
13311334

13321335
def test_md1_oneliner_block_span(self):
1336+
# https://github.com/Python-Markdown/markdown/issues/1074
13331337
self.assertMarkdownRenders(
13341338
self.dedent(
13351339
'<div class="outer" markdown="block"><div class="inner" markdown="span">*foo*</div></div>'
@@ -1341,6 +1345,7 @@ def test_md1_oneliner_block_span(self):
13411345
)
13421346

13431347
def test_md1_oneliner_block_span_start(self):
1348+
# https://github.com/Python-Markdown/markdown/issues/1074
13441349
self.assertMarkdownRenders(
13451350
self.dedent(
13461351
"""
@@ -1358,6 +1363,7 @@ def test_md1_oneliner_block_span_start(self):
13581363
)
13591364

13601365
def test_md1_oneliner_span_block_start(self):
1366+
# https://github.com/Python-Markdown/markdown/issues/1074
13611367
self.assertMarkdownRenders(
13621368
self.dedent(
13631369
"""

0 commit comments

Comments
 (0)