removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / bbum / DocArticle / DocArticle / DocArticleText.py
blobc9eec0f53d725adb9236f123ed16b37df7f7f32e
1 # Author: Bill Bumgarner
2 # Contact: bbum@codefab.com
3 # Copyright: 2002 - Bill Bumgarner - All Rights Reserved
4 # License: The MIT License -- see LICENSE.txt
6 """
7 Defines various chunks o' static text that are spewed into Articles.
9 A sort of half-baked library of templates. Currently extremely limited in scope.
10 """
12 __docformat__ = 'reStructuredText'
14 contentStart = """<?xml version="1.0" encoding="utf-8" ?>
15 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
16 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
17 """
19 headerStart = """<head>
20 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
21 """
23 titleStart = """<title>
24 """
25 titleEnd = """</title>
26 """
28 headerEnd = """</head>
29 """
31 bodyStart = """<body>
32 """
33 bodyEnd = """</body>
34 """
36 contentEnd = """</html>
37 """