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 break = Leaf "break" "<break" " />" ()
55 call = Parent "call" "<call" "</call>"
57 code = Parent "code" "<code" "</code>"
58 comment :: Text -> DTC
59 comment t = Comment (Text t) ()
61 date = Leaf "date" "<date" "/>" ()
63 define = Parent "define" "<define" "</define>"
65 del = Parent "del" "<del" "</del>"
66 document :: DTC -> DTC
67 document = Parent "document" "<document" "</document>"
69 editor = Parent "editor" "<editor" "</editor>"
71 email = Parent "email" "<email" "</email>"
73 entity = Leaf "entity" "<entity" "/>" ()
75 eref (Empty a) = Leaf "eref" "<eref" "/>" a
76 eref x = Parent "eref" "<eref" "</eref>" x
78 figure = Parent "figure" "<figure" "</figure>"
80 i = Parent "i" "<i" "</i>"
81 include :: Bool -> DTC
83 Leaf "include" "<include" "/>" ()
84 !? (not inc, attribute "include" " include=\"" "no")
86 index = Parent "index" "<index" "</index>"
88 iref (Empty a) = Leaf "iref" "<iref" "/>" a
89 iref x = Parent "iref" "<iref" "</iref>" x
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 tag = Parent "tag" "<tag" "</tag>"
131 title = Parent "title" "<title" "</title>"
133 toc = Leaf "toc" "<toc" "/>" ()
135 tof = Parent "tof" "<tof" "</tof>"
137 u = Parent "u" "<u" "</u>"
139 ul = Parent "ul" "<ul" "</ul>"
140 version :: DTC -> DTC
141 version = Parent "version" "<version" "</version>"
143 isInlinedElement :: Text -> Bool
144 isInlinedElement = \case