Conditions | 1 |
Total Lines | 20 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from unittest import TestCase |
||
18 | def test_blockquote_empty(self): |
||
19 | doc = self.conversion( |
||
20 | """ |
||
21 | > [!note] |
||
22 | """, |
||
23 | ) |
||
24 | text = convert_text( |
||
25 | doc, |
||
26 | input_format="panflute", |
||
27 | output_format="markdown", |
||
28 | ) |
||
29 | self.assertEqual( |
||
30 | text, |
||
31 | """ |
||
32 | :::: note |
||
33 | ::: title |
||
34 | Note |
||
35 | ::: |
||
36 | :::: |
||
37 | """.strip() |
||
38 | ) |
||
210 |