File: xhtml.py

package info (click to toggle)
pyth 0.5.6-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 312 kB
  • sloc: python: 1,609; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from pyth.plugins.xhtml.writer import XHTMLWriter
import pythonDoc


docTemplate = '''<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Pyth document</title>
  <style type="text/css">body { font-family: Verdana; }</style>
</head>
<body>
%s
</body>
</html>
'''


if __name__ == "__main__":
    doc = pythonDoc.buildDoc()
    print docTemplate % XHTMLWriter.write(doc, pretty=True).getvalue()