forked from rufuspollock/markdown2latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdx_latex.py
733 lines (588 loc) · 23.9 KB
/
mdx_latex.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
#!/usr/bin/env python2
"""Extension to python-markdown to support LaTeX (rather than html) output.
Authored by Rufus Pollock: <http://www.rufuspollock.org/>
Reworked by Julian Wulfheide ([email protected]) and
Pedro Gaudencio ([email protected])
Usage:
======
1. Command Line. A script entitled markdown2latex.py is automatically
installed. For details of usage see help::
$ markdown2latex.py -h
2. As a python-markdown extension::
>>> import markdown
>>> md = markdown.Markdown(None, extensions=['latex'])
>>> # text is input string ...
>>> latex_out = md.convert(text)
3. Directly as a module (slight inversion of std markdown extension setup)::
>>> import markdown
>>> import mdx_latex
>>> md = markdown.Markdown()
>>> latex_mdx = mdx_latex.LaTeXExtension()
>>> latex_mdx.extendMarkdown(md, markdown.__dict__)
>>> out = md.convert(text)
History
=======
Version: 1.0 (November 15, 2006)
* First working version (compatible with markdown 1.5)
* Includes support for tables
Version: 1.1 (January 17, 2007)
* Support for verbatim and images
Version: 1.2 (June 2008)
* Refactor as an extension.
* Make into a proper python/setuptools package.
* Tested with markdown 1.7 but should work with 1.6 and (possibly) 1.5
(though pre/post processor stuff not as worked out there)
Version 1.3: (July 2008)
* Improvements to image output (width)
Version 1.3.1: (August 2009)
* Tiny bugfix to remove duplicate keyword argument and set zip_safe=False
* Add [width=\textwidth] by default for included images
Version 2.0: (June 2011)
* PEP8 cleanup
* Major rework since this was broken by new Python-Markdown releases
Version 2.1: (August 2013)
* Add handler for non locally referenced images, hyperlinks and horizontal rules
* Update math delimiters
"""
__version__ = '2.1'
# do some fancy importing stuff to allow use to override things in this module
# in this file while still importing * for use in our own classes
import re
import sys
import markdown
import xml.dom.minidom
from urllib.parse import urlparse
import http.client
import os
import tempfile
import urllib.request, urllib.parse, urllib.error
start_single_quote_re = re.compile("(^|\s|\")'")
start_double_quote_re = re.compile("(^|\s|'|`)\"")
end_double_quote_re = re.compile("\"(,|\.|\s|$)")
def inline_html_latex(text):
out = text
# most of them to support smarty extensions
if re.search(r'“.*?”', text , flags=re.DOTALL):
out = out.replace('“', '\enquote{').replace('”', '}')
# replace certain html element with they LaTeX eqivarent
if re.search(r'‘.*?’', text , flags=re.DOTALL):
out = out.replace('‘', '\enquote{').replace('’', '}')
if re.search(r'“.*?“', text , flags=re.DOTALL):
# sometimes is processing like this
out = out.replace('“', '\enquote{', 1).replace('“', '}', 1)
if re.search(r'«.*?»', text , flags=re.DOTALL):
out = out.replace('«', '\enquote{').replace('»', '}')
out = out.replace("...", "\dots")
out = out.replace("…", "\dots")
out = out.replace("–", "--")
out = out.replace("—", "---")
# replace '\|' as we should already processed the tables and do not need in LaTeX
out = out.replace("\|", '|')
return out
def unescape_html_entities(text):
out = text.replace('&', '&')
out = out.replace('<', '<')
out = out.replace('>', '>')
out = out.replace('"', '"')
return out
def escape_latex_entities(text):
"""Escape latex reserved characters."""
out = text
out = unescape_html_entities(out)
out = out.replace('%', '\\%')
out = out.replace('&', '\\&')
out = out.replace('#', '\\#')
out = start_single_quote_re.sub('\g<1>`', out)
out = start_double_quote_re.sub('\g<1>``', out)
out = end_double_quote_re.sub("''\g<1>", out)
# people should escape these themselves as it conflicts with maths
# out = out.replace('{', '\\{')
# out = out.replace('}', '\\}')
# do not do '$' here because it is dealt with by convert_maths
# out = out.replace('$', '\\$')
return out
def unescape_latex_entities(text):
"""Limit ourselves as this is only used for maths stuff."""
out = text
out = out.replace('\\&', '&')
return out
def makeExtension(configs=None):
return LaTeXExtension(configs=configs)
class LaTeXExtension(markdown.Extension):
def __init__(self, configs=None):
self.reset()
def extendMarkdown(self, md, md_globals):
self.md = md
# remove escape pattern -- \\(.*) -- as this messes up any embedded
# math and we don't need to escape stuff any more for html
# for key, pat in self.md.inlinePatterns.items():
# if pat.pattern == markdown.inlinepatterns.ESCAPE_RE:
# self.md.inlinePatterns.pop(key)
# break
#footnote_extension = FootnoteExtension()
#footnote_extension.extendMarkdown(md, md_globals)
latex_tp = LaTeXTreeProcessor()
math_pp = MathTextPostProcessor()
table_pp = TableTextPostProcessor()
image_pp = ImageTextPostProcessor()
link_pp = LinkTextPostProcessor()
unescape_html_pp = UnescapeHtmlTextPostProcessor()
md.treeprocessors['latex'] = latex_tp
md.postprocessors['unescape_html'] = unescape_html_pp
md.postprocessors['math'] = math_pp
md.postprocessors['image'] = image_pp
md.postprocessors['table'] = table_pp
md.postprocessors['link'] = link_pp
def reset(self):
pass
class LaTeXTreeProcessor(markdown.treeprocessors.Treeprocessor):
def run(self, doc):
"""Walk the dom converting relevant nodes to text nodes with relevant
content."""
latex_text = self.tolatex(doc)
doc.clear()
latex_node = markdown.util.etree.Element('root')
latex_node.text = latex_text
doc.append(latex_node)
def tolatex(self, ournode):
buffer = ""
subcontent = ""
if ournode.text:
subcontent += escape_latex_entities(ournode.text)
if list(ournode):
for child in list(ournode):
subcontent += self.tolatex(child)
if ournode.tag == 'h1':
buffer += '\n\\title{%s}\n' % subcontent
buffer += """
% ----------------------------------------------------------------
\maketitle
% ----------------------------------------------------------------
"""
elif ournode.tag == 'h2':
buffer += '\n\n\\section{%s}\n' % subcontent
elif ournode.tag == 'h3':
buffer += '\n\n\\subsection{%s}\n' % subcontent
elif ournode.tag == 'h4':
buffer += '\n\\subsubsection{%s}\n' % subcontent
elif ournode.tag == 'hr':
buffer += '\\noindent\makebox[\linewidth]{\\rule{\linewidth}{0.4pt}}'
elif ournode.tag == 'ul':
# no need for leading \n as one will be provided by li
buffer += """
\\begin{itemize}%s
\\end{itemize}
""" % subcontent
elif ournode.tag == 'ol':
buffer += """
\\begin{enumerate}"""
if 'start' in ournode.attrib.keys():
start = int(ournode.attrib['start'])-1
buffer += "\setcounter{enumi}{"+str(start)+"}"
# no need for leading \n as one will be provided by li
buffer += """
%s
\\end{enumerate}
""" % subcontent
elif ournode.tag == 'li':
buffer += """
\\item %s""" % subcontent.strip()
elif ournode.tag == 'blockquote':
# use quotation rather than quote as quotation can support multiple
# paragraphs
buffer += """
\\begin{quotation}
%s
\\end{quotation}
""" % subcontent.strip()
# ignore 'code' when inside pre tags
# (mkdn produces <pre><code></code></pre>)
elif (ournode.tag == 'pre' or
# TODO: Take a look here
(ournode.tag == 'pre' and ournode.parentNode.tag != 'pre')):
buffer += """
\\begin{verbatim}
%s
\\end{verbatim}
""" % subcontent.strip()
elif ournode.tag == 'q':
buffer += "`%s'" % subcontent.strip()
elif ournode.tag == 'p':
buffer += '\n%s\n' % subcontent.strip()
# Footnote processor inserts all of the footnote in a sup tag
elif ournode.tag == 'sup':
buffer += '\\footnote{%s}' % subcontent.strip()
elif ournode.tag == 'strong':
buffer += '\\textbf{%s}' % subcontent.strip()
elif ournode.tag == 'em':
buffer += '\\emph{%s}' % subcontent.strip()
# Keep table strcuture. TableTextPostProcessor will take care.
elif ournode.tag == 'table':
buffer += '\n\n<table>%s</table>\n\n' % subcontent
elif ournode.tag == 'thead':
buffer += '<thead>%s</thead>' % subcontent
elif ournode.tag == 'tbody':
buffer += '<tbody>%s</tbody>' % subcontent
elif ournode.tag == 'tr':
buffer += '<tr>%s</tr>' % subcontent
elif ournode.tag == 'th':
buffer += '<th>%s</th>' % subcontent
elif ournode.tag == 'td':
buffer += '<td>%s</td>' % subcontent
elif ournode.tag == 'img':
buffer += '<img src=\"%s\" alt=\"%s\" />' % (ournode.get('src'),
ournode.get('alt'))
elif ournode.tag == 'a':
buffer += '<a href=\"%s\">%s</a>' % (escape_latex_entities(ournode.get('href')),
subcontent)
else:
buffer = subcontent
if ournode.tail:
buffer += escape_latex_entities(ournode.tail)
return buffer
class UnescapeHtmlTextPostProcessor(markdown.postprocessors.Postprocessor):
def run(self, text):
return unescape_html_entities(inline_html_latex(text))
# ========================= MATHS =================================
class MathTextPostProcessor(markdown.postprocessors.Postprocessor):
def run(self, instr):
"""Convert all math sections in {text} whether latex, asciimathml or
latexmathml formatted to latex.
This assumes you are using $ for inline math and $$ for blocks as your
mathematics delimiter (*not* the standard asciimathml or latexmathml
delimiter).
"""
def repl_1(matchobj):
text = unescape_latex_entities(matchobj.group(1))
return '\\[%s\\]' % text
def repl_2(matchobj):
text = unescape_latex_entities(matchobj.group(1))
return '\\(%s\\)' % text
# This $$x=3$$ is block math
pat = re.compile('\$\$([^\$]*)\$\$')
out = pat.sub(repl_1, instr)
# This $x=3$ is inline math
pat2 = re.compile('\$([^\$]*)\$')
out = pat2.sub(repl_2, out)
# some extras due to asciimathml
out = out.replace('\\lt', '<')
out = out.replace(' * ', ' \\cdot ')
out = out.replace('\\del', '\\partial')
return out
# ========================= TABLES =================================
class TableTextPostProcessor(markdown.postprocessors.Postprocessor):
def run(self, instr):
"""This is not very sophisticated and for it to work it is expected
that:
1. tables to be in a section on their own (that is at least one
blank line above and below)
2. no nesting of tables
"""
converter = Table2Latex()
new_blocks = []
for block in instr.split('\n\n'):
stripped = block.strip()
# <table catches modified verions (e.g. <table class="..">
if stripped.startswith('<table') and stripped.endswith('</table>'):
latex_table = converter.convert(stripped).strip()
new_blocks.append(latex_table)
else:
new_blocks.append(block)
return '\n\n'.join(new_blocks)
class Table2Latex:
"""
Convert html tables to Latex.
TODO: escape latex entities.
"""
def colformat(self):
# centre align everything by default
out = '|l' * self.maxcols + '|'
return out
def get_text(self, element):
if element.nodeType == element.TEXT_NODE:
return escape_latex_entities(element.data)
result = ''
if element.childNodes:
for child in element.childNodes:
text = self.get_text(child)
if text.strip() != '':
result += text
return result
def process_cell(self, element):
# works on both td and th
colspan = 1
subcontent = self.get_text(element)
buffer = ""
if element.tagName == 'th':
subcontent = '\\textbf{%s}' % subcontent
if element.hasAttribute('colspan'):
colspan = int(element.getAttribute('colspan'))
buffer += ' \multicolumn{%s}{|c|}{%s}' % (colspan, subcontent)
# we don't support rowspan because:
# 1. it needs an extra latex package \usepackage{multirow}
# 2. it requires us to mess around with the alignment tags in
# subsequent rows (i.e. suppose the first col in row A is rowspan 2
# then in row B in the latex we will need a leading &)
# if element.hasAttribute('rowspan'):
# rowspan = int(element.getAttribute('rowspan'))
# buffer += ' \multirow{%s}{|c|}{%s}' % (rowspan, subcontent)
else:
buffer += ' %s' % subcontent
notLast = (element.nextSibling.nextSibling and
element.nextSibling.nextSibling.nodeType ==
element.ELEMENT_NODE and
element.nextSibling.nextSibling.tagName in ['td', 'th'])
if notLast:
buffer += ' &'
self.numcols += colspan
return buffer
def tolatex(self, element):
if element.nodeType == element.TEXT_NODE:
return ""
buffer = ""
subcontent = ""
if element.childNodes:
for child in element.childNodes:
text = self.tolatex(child)
if text.strip() != "":
subcontent += text
subcontent = subcontent.strip()
if element.tagName == 'thead':
buffer += subcontent
elif element.tagName == 'tr':
self.maxcols = max(self.numcols, self.maxcols)
self.numcols = 0
buffer += '\n\\hline\n%s \\\\' % subcontent
elif element.tagName == 'td' or element.tagName == 'th':
buffer = self.process_cell(element)
else:
buffer += subcontent
return buffer
def convert(self, instr):
self.numcols = 0
self.maxcols = 0
dom = xml.dom.minidom.parseString(instr)
core = self.tolatex(dom.documentElement)
captionElements = dom.documentElement.getElementsByTagName('caption')
caption = ''
if captionElements:
caption = self.get_text(captionElements[0])
colformatting = self.colformat()
table_latex = \
"""
\\begin{table}[h]
\\begin{tabular}{%s}
%s
\\hline
\\end{tabular}
\\\\[5pt]
\\caption{%s}
\\end{table}
""" % (colformatting, core, caption)
return table_latex
# ========================= IMAGES =================================
class ImageTextPostProcessor(markdown.postprocessors.Postprocessor):
def run(self, instr):
"""Process all img tags
Similar to process_tables this is not very sophisticated and for it
to work it is expected that img tags are put in a section of their own
(that is separated by at least one blank line above and below).
"""
converter = Img2Latex()
new_blocks = []
for block in instr.split("\n\n"):
stripped = block.strip()
# <table catches modified verions (e.g. <table class="..">
if stripped.startswith('<img'):
latex_img = converter.convert(stripped).strip()
new_blocks.append(latex_img)
else:
new_blocks.append(block)
return '\n\n'.join(new_blocks)
class Img2Latex(object):
def convert(self, instr):
dom = xml.dom.minidom.parseString(instr)
img = dom.documentElement
src = img.getAttribute('src')
if urlparse(src).scheme != '':
src_urlparse = urlparse(src)
conn = http.client.HTTPConnection(src_urlparse.netloc)
conn.request('HEAD', src_urlparse.path)
response = conn.getresponse()
conn.close()
if response.status == 200:
filename = os.path.join(tempfile.mkdtemp(), src.split('/')[-1])
urllib.request.urlretrieve(src, filename)
src = filename
alt = img.getAttribute('alt')
# Using graphicx and ajustbox package for *max width*
out = \
"""
\\begin{figure}[H]
\\centering
\\includegraphics[max width=\\linewidth]{%s}
\\caption{%s}
\\end{figure}
""" % (src, alt)
return out
# ========================== LINKS =================================
class LinkTextPostProcessor(markdown.postprocessors.Postprocessor):
def run(self, instr):
# Process all hyperlinks
converter = Link2Latex()
new_blocks = []
for block in instr.split("\n\n"):
stripped = block.strip()
match = re.findall(r'<a[^>]*>[^<]+</a>', stripped)
# <table catches modified verions (e.g. <table class="..">
if match:
latex_link = stripped
# replace multiple <a> occurrences individually
for occurrence in match:
latex_link = re.sub(r'<a[^>]*>([^<]+)</a>',
converter.convert(occurrence).strip(),
latex_link, count=1)
new_blocks.append(latex_link)
else:
new_blocks.append(block)
return '\n\n'.join(new_blocks)
class Link2Latex(object):
def convert(self, instr):
dom = xml.dom.minidom.parseString(instr)
link = dom.documentElement
href = link.getAttribute('href')
desc = re.search(r'>([^<]+)', instr)
if href == desc.group(1):
out = r"\\url{%s}" % (href)
else:
out = \
"""
\\\href{%s}{%s}
""" % (href, desc.group(1))
return out
"""
========================= FOOTNOTES =================================
LaTeX footnote support.
Implemented via modification of original markdown approach (place footnote
definition in footnote market <sup> as opposed to putting a reference link).
"""
class FootnoteExtension (markdown.Extension):
DEF_RE = re.compile(r"(\ ?\ ?\ ?)\[\^([^\]]*)\]:\s*(.*)")
SHORT_USE_RE = re.compile(r"\[\^([^\]]*)\]", re.M) # [^a]
def __init__(self, configs=None):
self.reset()
def extendMarkdown(self, md, md_globals):
self.md = md
# Stateless extensions do not need to be registered
md.registerExtension(self)
# Insert a preprocessor before ReferencePreprocessor
#index = md.preprocessors.index(md_globals['REFERENCE_PREPROCESSOR'])
#preprocessor = FootnotePreprocessor(self)
#preprocessor.md = md
#md.preprocessors.insert(index, preprocessor)
md.preprocessors.add('footnotes', FootnotePreprocessor(self), '_begin')
## Insert an inline pattern before ImageReferencePattern
FOOTNOTE_RE = r"\[\^([^\]]*)\]" # blah blah [^1] blah
#index = md.inlinePatterns.index(md_globals['IMAGE_REFERENCE_PATTERN'])
#md.inlinePatterns.insert(index, FootnotePattern(FOOTNOTE_RE, self))
md.inlinePatterns.add('footnotes', FootnotePattern(FOOTNOTE_RE, self),
'_begin')
def reset(self):
self.used_footnotes = {}
self.footnotes = {}
def setFootnote(self, id, text):
self.footnotes[id] = text
class FootnotePreprocessor:
def __init__(self, footnotes):
self.footnotes = footnotes
def run(self, lines):
self.blockGuru = BlockGuru()
lines = self._handleFootnoteDefinitions(lines)
# Make a hash of all footnote marks in the text so that we
# know in what order they are supposed to appear. (This
# function call doesn't really substitute anything - it's just
# a way to get a callback for each occurence.
text = "\n".join(lines)
self.footnotes.SHORT_USE_RE.sub(self.recordFootnoteUse, text)
return text.split("\n")
def recordFootnoteUse(self, match):
id = match.group(1)
id = id.strip()
nextNum = len(list(self.footnotes.used_footnotes.keys())) + 1
self.footnotes.used_footnotes[id] = nextNum
def _handleFootnoteDefinitions(self, lines):
"""Recursively finds all footnote definitions in the lines.
@param lines: a list of lines of text
@returns: a string representing the text with footnote
definitions removed """
i, id, footnote = self._findFootnoteDefinition(lines)
if id:
plain = lines[:i]
detabbed, theRest = self.blockGuru.detectTabbed(lines[i + 1:])
self.footnotes.setFootnote(id,
footnote + "\n"
+ "\n".join(detabbed))
more_plain = self._handleFootnoteDefinitions(theRest)
return plain + [""] + more_plain
else:
return lines
def _findFootnoteDefinition(self, lines):
"""Finds the first line of a footnote definition.
@param lines: a list of lines of text
@returns: the index of the line containing a footnote definition.
"""
counter = 0
for line in lines:
m = self.footnotes.DEF_RE.match(line)
if m:
return counter, m.group(2), m.group(3)
counter += 1
return counter, None, None
class FootnotePattern(markdown.inlinepatterns.Pattern):
def __init__(self, pattern, footnotes):
markdown.inlinepatterns.Pattern.__init__(self, pattern)
self.footnotes = footnotes
def handleMatch(self, m, doc):
sup = doc.createElement('sup')
id = m.group(2)
# stick the footnote text in the sup
self.footnotes.md._processSection(sup,
self.footnotes.footnotes[id].split("\n"))
return sup
def template(template_fo, latex_to_insert):
tmpl = template_fo.read()
tmpl = tmpl.replace('INSERT-TEXT-HERE', latex_to_insert)
return tmpl
# title_items = [ '\\title', '\\end{abstract}', '\\thanks', '\\author' ]
# has_title_stuff = False
# for it in title_items:
# has_title_stuff = has_title_stuff or (it in tmpl)
def main():
import optparse
usage = \
"""usage: %prog [options] <in-file-path>
Given a file path, process it using markdown2latex and print the result on
stdout.
If using template option template should place text INSERT-TEXT-HERE in the
template where text should be inserted.
"""
parser = optparse.OptionParser(usage)
parser.add_option('-t', '--template', dest='template',
default='',
help='path to latex template file (optional)')
(options, args) = parser.parse_args()
if not len(args) > 0:
parser.print_help()
sys.exit(1)
inpath = args[0]
infile = file(inpath)
md = markdown.Markdown()
mkdn2latex = LaTeXExtension()
mkdn2latex.extendMarkdown(md, markdown.__dict__)
out = md.convert(infile.read())
if options.template:
tmpl_fo = file(options.template)
out = template(tmpl_fo, out)
print(out)
if __name__ == '__main__':
main()