1 {-# LANGUAGE OverloadedLists #-}
2 {-# LANGUAGE OverloadedStrings #-}
3 module Text.Blaze.DTC where
6 import Data.Text (Text)
8 import Text.Blaze.Internal
10 import Text.Blaze.Utils
11 import Text.Blaze.XML (XML)
16 xmlModel :: Text -> DTC
18 Leaf "xml-model" "<?xml-model" "?>\n" ()
19 ! attribute "type" " type=\"" "application/relax-ng-compact-syntax"
20 ! attribute "href" " href=\"" (attrify rnc)
22 xmlStylesheet :: Text -> DTC
24 Leaf "xml-stylesheet" "<?xml-stylesheet" "?>\n" ()
25 ! attribute "type" " type=\"" "text/xsl"
26 ! attribute "href" " href=\"" (attrify xsl)
28 html5Stylesheet :: Text -> DTC
30 Leaf "html5-stylesheet" "<?html5-stylesheet" "?>\n" ()
31 ! attribute "type" " type=\"" "text/xsl"
32 ! attribute "href" " href=\"" (attrify xsl)
34 atomStylesheet :: Text -> DTC
36 Leaf "atom-stylesheet" "<?atom-stylesheet" "?>\n" ()
37 ! attribute "type" " type=\"" "text/xsl"
38 ! attribute "href" " href=\"" (attrify xsl)
41 about = Parent "about" "<about" "</about>"
43 alias = Leaf "alias" "<alias" "/>" ()
45 artwork = Parent "artwork" "<artwork" "</artwork>"
47 author = Parent "author" "<author" "</author>"
49 b = Parent "b" "<b" "</b>"
51 br = Leaf "br" "<br" " />" ()
53 call = Parent "call" "<call" "</call>"
55 code = Parent "code" "<code" "</code>"
56 comment :: Text -> DTC
57 comment t = Comment (Text t) ()
59 date = Leaf "date" "<date" "/>" ()
61 define = Parent "define" "<define" "</define>"
63 del = Parent "del" "<del" "</del>"
64 document :: DTC -> DTC
65 document = Parent "document" "<document" "</document>"
67 editor = Parent "editor" "<editor" "</editor>"
69 email = Parent "email" "<email" "</email>"
71 entity = Leaf "entity" "<entity" "/>" ()
73 eref (Empty a) = Leaf "eref" "<eref" "/>" a
74 eref x = Parent "eref" "<eref" "</eref>" x
76 figure = Parent "figure" "<figure" "</figure>"
78 i = Parent "i" "<i" "</i>"
79 include :: Bool -> DTC
81 Leaf "include" "<include" "/>" ()
82 !? (not inc, attribute "include" " include=\"" "no")
84 index = Parent "index" "<index" "</index>"
86 iref (Empty a) = Leaf "iref" "<iref" "/>" a
87 iref x = Parent "iref" "<iref" "</iref>" x
89 keyword = Parent "keyword" "<keyword" "</keyword>"
91 li = Parent "li" "<li" "</li>"
93 link = Parent "link" "<link" "</link>"
95 macro = Parent "macro" "<macro" "</macro>"
97 note = Parent "note" "<note" "</note>"
99 ol = Parent "ol" "<ol" "</ol>"
100 organization :: DTC -> DTC
101 organization = Parent "organization" "<organization" "</organization>"
103 p = Parent "p" "<p" "</p>"
105 para = Parent "para" "<para" "</para>"
107 q = Parent "q" "<q" "</q>"
109 quote = Parent "quote" "<quote" "</quote>"
111 ref (Empty a) = Leaf "ref" "<ref" "/>" a
112 ref x = Parent "ref" "<ref" "</ref>" x
113 reference :: DTC -> DTC
114 reference = Parent "reference" "<reference" "</reference>"
115 references :: DTC -> DTC
116 references = Parent "references" "<references" "</references>"
118 rref (Empty a) = Leaf "rref" "<rref" "/>" a
119 rref x = Parent "rref" "<rref" "</rref>" x
121 sc = Parent "sc" "<sc" "</sc>"
122 section :: DTC -> DTC
123 section = Parent "section" "<section" "</section>"
125 sub = Parent "sub" "<sub" "</sub>"
127 sup = Parent "sup" "<sup" "</sup>"
129 title = Parent "title" "<title" "</title>"
131 toc = Leaf "toc" "<toc" "/>" ()
133 tof = Parent "tof" "<tof" "</tof>"
135 u = Parent "u" "<u" "</u>"
137 ul = Parent "ul" "<ul" "</ul>"
138 version :: DTC -> DTC
139 version = Parent "version" "<version" "</version>"
141 indentTag :: Text -> IndentTag
144 "about" -> IndentTagChildren
145 "address" -> IndentTagChildren
146 "author" -> IndentTagChildren
147 "document" -> IndentTagChildren
148 "editor" -> IndentTagChildren
149 "figure" -> IndentTagChildren
150 "ol" -> IndentTagChildren
151 "postal" -> IndentTagChildren
152 "reference" -> IndentTagChildren
153 "rl" -> IndentTagChildren
154 "section" -> IndentTagChildren
155 "ul" -> IndentTagChildren
159 "li" -> IndentTagText
160 "para" -> IndentTagText
162 "quote" -> IndentTagText
163 "note" -> IndentTagText
164 _ -> IndentTagPreserve