forked from rufuspollock/markdown2latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdx_latex_test.py
298 lines (230 loc) · 6.31 KB
/
mdx_latex_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import markdown
import mdx_latex
class TestMkdn2Latex:
mkdn_input = \
'''# Anna Karenina #
## A first section ##
A simple list:
1. Item 1
2. Item 2
An unordered list:
* First bullet
* Second bullet
Now we have a blockquote:
> A big quote that goes on, and on, and on, and on, and on, and on, and on, and
> on
>
> A big quote that goes on, and on, and on, and on, and on, and on, and on, and
> on
>
> A big quote that goes on, and on, and on, and on, and on, and on, and on, and
> on
Some mathematics inline, $$X$$, a $100 million, a %tage and then a formula:
$$ \\sum_{i}^{\\infty} x^{n} + y^{n} = \\alpha + \\beta * z^{n} $$
A paragraph with a[^fn1] footnote in it[^fn1].
[^fn1]: a very dull footnote indeed
but it does have mutiple paragraphs.
A table now (this is *really* complicated):
<table class="data">
<caption>My Caption</caption>
<thead>
<tr>
<th>Heading 1</th><th>Heading 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.0%</td><td>2.0%</td>
</tr>
<tr>
<td>1.0</td><td>2.0</td>
</tr>
</tbody>
</table>
Now let's try having an image:
<img src="blah.png" alt="abc abc" class="xyz" />
Stuff we should escape A&R, a %tage sign
Now some preformatted text:
$ sudo python ...
'''
expected = \
'''\\title{Anna Karenina}
% ----------------------------------------------------------------
\maketitle
% ----------------------------------------------------------------
\\section{A first section}
A simple list:
\\begin{enumerate}
\\item Item 1
\\item Item 2
\\end{enumerate}
An unordered list:
\\begin{itemize}
\\item First bullet
\\item Second bullet
\\end{itemize}
Now we have a blockquote:
\\begin{quotation}
A big quote that goes on, and on, and on, and on, and on, and on, and on, and
on
A big quote that goes on, and on, and on, and on, and on, and on, and on, and
on
A big quote that goes on, and on, and on, and on, and on, and on, and on, and
on
\\end{quotation}
Some mathematics inline, $X$, a \\$100 million, a \\%tage and then a formula:
\\[ \\sum_{i}^{\\infty} x^{n} + y^{n} = \\alpha + \\beta \cdot z^{n} \\]
A paragraph with a\\footnote{a very dull footnote indeed
but it does have mutiple paragraphs.} footnote in it\\footnote{a very dull footnote indeed
but it does have mutiple paragraphs.}.
A table now (this is \\emph{really} complicated):
\\begin{table}
\\begin{tabular}{|c|c|}
\\hline
\\textbf{Heading 1} & \\textbf{Heading 2} \\\\
\\hline
1.0\\% & 2.0\\% \\\\
\\hline
1.0 & 2.0 \\\\
\\hline
\\end{tabular}
\\\\[5pt]
\\caption{My Caption}
\\end{table}
Now let's try having an image:
\\begin{figure}
\\centering
\\includegraphics[width=\\textwidth]{blah.png}
\\caption{abc abc}
\\end{figure}
Stuff we should escape A\\&R, a \\%tage sign
\\begin{verbatim}
Now some preformatted text:
\\$ sudo python ...
\\end{verbatim}'''
md = markdown.Markdown(None)
def test_1(self):
ltx = mdx_latex.makeExtension()
# or just mdx_latex.LaTeXExtension()
ltx.extendMarkdown(self.md, markdown.__dict__)
# self.footnoteExtension.extendMarkdown(self.mdx_latexer)
out = self.md.convert(self.mkdn_input)
outlines = out.split('\n')
explines = self.expected.split('\n')
# TODO: this misses stuff if out > exp
print('******** EXPECTED *********')
print(self.expected)
print('******** ACTUAL *********')
print(out)
print('******** ANALYSIS *********')
for ii in range(len(explines)):
if outlines[ii] != explines[ii]:
print(ii)
print('out:', '"%s"' % outlines[ii])
print('exp:', '"%s"' % explines[ii])
if len(explines) < len(outlines):
print('Out longer than expected:')
print(outlines[len(explines):])
# for ii in range(len(out)):
# if out[ii] != self.expected[ii]:
# print out[ii:ii+10]
assert out == self.expected
class TestEscapeLatexEntities:
in1 = \
'''"Hello world". & C## Don't have 'another quote"
Now for "'Something a little' more complicated". "And again."
'''
exp1 = \
'''``Hello world''. \\& C\#\# Don't have `another quote''
Now for ```Something a little' more complicated''. ``And again.''
'''
def test_1(self):
out = mdx_latex.escape_latex_entities(self.in1)
print(out)
assert out == self.exp1
# for ii in range(len(out)):
# print ii
# assert out[ii] == self.exp1[ii]
class TestTable2Latex:
intable1 = '''
<table>
<caption>My Caption</caption>
<thead>
<tr>
<th id="99" colspan="3">Heading 1</th><th>Heading 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.0</td><td>2.0</td><td>1.0</td><td>2.0</td></tr>
<tr>
<td>1.0</td><td>2.0</td><td>1.0</td><td>2.0</td>
</tr>
</tbody>
</table>'''
exp1 = '''
\\begin{table}
\\begin{tabular}{|c|c|c|c|}
\\hline
\\multicolumn{3}{|c|}{\\textbf{Heading 1}} & \\textbf{Heading 2} \\\\
\\hline
1.0 & 2.0 & 1.0 & 2.0 \\\\
\\hline
1.0 & 2.0 & 1.0 & 2.0 \\\\
\hline
\\end{tabular}
\\\\[5pt]
\\caption{My Caption}
\\end{table}
'''
def test_1(self):
converter = mdx_latex.Table2Latex()
out = converter.convert(self.intable1)
ss = str(self.exp1)
print(out)
print(ss)
assert out == ss
class TestMathConvert:
intext = '''
$$ \\sum_{x=1} ... $$
Hello world, $$x$$. $100 million.
$$x=5$$, but then along comes the fox! $$y=6$$
$$
\begin{eqnarray}
W & = & y + z \\\\
& = & 3x
\end{eqnarray}
$$
'''
outtext = '''
\\[ \\sum_{x=1} ... \\]
Hello world, $x$. \$100 million.
$x=5$, but then along comes the fox! $y=6$
\\[
\begin{eqnarray}
W & = & y + z \\\\
& = & 3x
\end{eqnarray}
\\]
'''
def test_1(self):
converter = mdx_latex.MathTextPostProcessor()
out = converter.run(self.intext)
print(out)
assert out == self.outtext
class TestImgConvert:
intext = '''
<img src="blah.png" alt="abc abc" class="xyz" />
'''
exp1 = '''
\\begin{figure}
\\centering
\\includegraphics[width=\\textwidth]{blah.png}
\\caption{abc abc}
\\end{figure}
'''
def test_1(self):
converter = mdx_latex.Img2Latex()
out = converter.convert(self.intext)
print(out)
assert out == self.exp1