Conditions | 1 |
Total Lines | 28 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from unittest import TestCase |
||
120 | def test_numbering_sectioning(self): |
||
121 | verify_conversion( |
||
122 | self, |
||
123 | r""" |
||
124 | --- |
||
125 | pandoc-numbering: |
||
126 | exercise: |
||
127 | general: |
||
128 | sectioning-levels: '-.+.' |
||
129 | --- |
||
130 | |||
131 | First chapter |
||
132 | ============= |
||
133 | |||
134 | Second chapter |
||
135 | ============== |
||
136 | |||
137 | First section |
||
138 | ------------- |
||
139 | |||
140 | Second section |
||
141 | -------------- |
||
142 | |||
143 | Exercise # |
||
144 | |||
145 | Exercise (Title) # |
||
146 | """, |
||
147 | r""" |
||
148 | --- |
||
168 |