##// END OF EJS Templates
Add failing test for issue #6724
Thomas Kluyver -
Show More
@@ -86,6 +86,12 b' class TestMarkdown(TestsBase):'
86 for case in cases:
86 for case in cases:
87 self.assertIn(case, markdown2html(case))
87 self.assertIn(case, markdown2html(case))
88
88
89 def test_markdown2html_math_paragraph(self):
90 # https://github.com/ipython/ipython/issues/6724
91 a = """Water that is stored in $t$, $s_t$, must equal the storage content of the previous stage,
92 $s_{t-1}$, plus a stochastic inflow, $I_t$, minus what is being released in $t$, $r_t$.
93 With $s_0$ defined as the initial storage content in $t=1$, we have"""
94 self.assertIn(a, markdown2html(a))
89
95
90 @dec.onlyif_cmds_exist('pandoc')
96 @dec.onlyif_cmds_exist('pandoc')
91 def test_markdown2rst(self):
97 def test_markdown2rst(self):
General Comments 0
You need to be logged in to leave comments. Login now