1 {-# LANGUAGE OverloadedStrings #-}
2 module Text.Blaze.HTML5 where
4 import Data.Text (Text)
6 import Text.Blaze.Utils
8 indentTag :: Text -> IndentTag
11 "aside" -> IndentTagChildren
12 "body" -> IndentTagChildren
13 "div" -> IndentTagChildren
14 "head" -> IndentTagChildren
15 "html" -> IndentTagChildren
16 "nav" -> IndentTagChildren
17 "ol" -> IndentTagChildren
18 "section" -> IndentTagChildren
19 "table" -> IndentTagChildren
20 "tbody" -> IndentTagChildren
21 "thead" -> IndentTagChildren
22 "tr" -> IndentTagChildren
23 "ul" -> IndentTagChildren
24 -- "td" -> IndentTagText
26 _ -> IndentTagPreserve