{-# LANGUAGE OverloadedStrings #-}
module Miso.Html.Element
(
nodeHtml
, nodeHtmlKeyed
, html_
, doctype_
, base_
, head_
, link_
, meta_
, style_
, title_
, body_
, address_
, article_
, aside_
, footer_
, header_
, h1_
, h2_
, h3_
, h4_
, h5_
, h6_
, hgroup_
, main_
, nav_
, section_
, search_
, blockquote_
, dd_
, div_
, dl_
, dt_
, figcaption_
, figure_
, hr_
, li_
, liKeyed_
, menu_
, ol_
, p_
, pre_
, ul_
, a_
, abbr_
, b_
, bdi_
, bdo_
, br_
, cite_
, code_
, data_
, dfn_
, em_
, i_
, kbd_
, mark_
, q_
, rp_
, rt_
, ruby_
, s_
, samp_
, small_
, span_
, strong_
, sub_
, sup_
, time_
, u_
, var_
, wbr_
, area_
, audio_
, img_
, map_
, track_
, video_
, embed_
, fencedframe_
, iframe_
, object_
, picture_
, source_
, canvas_
, noscript_
, script_
, del_
, ins_
, caption_
, col_
, colgroup_
, table_
, tbody_
, td_
, tfoot_
, th_
, thead_
, tr_
, trKeyed_
, button_
, datalist_
, fieldset_
, form
, input_
, label_
, legend_
, meter_
, optgroup_
, option_
, output_
, progress_
, select_
, textarea_
, details_
, dialog_
, summary_
, slot_
, template_
) where
import Miso.Html.Types
import Miso.String (MisoString)
nodeHtml :: MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml :: forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
nodeName = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
nodeName Maybe Key
forall a. Maybe a
Nothing
nodeHtmlKeyed :: MisoString -> Key -> [Attribute action] -> [View action] -> View action
nodeHtmlKeyed :: forall action.
MisoString
-> Key -> [Attribute action] -> [View action] -> View action
nodeHtmlKeyed MisoString
name = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
name (Maybe Key -> [Attribute action] -> [View action] -> View action)
-> (Key -> Maybe Key)
-> Key
-> [Attribute action]
-> [View action]
-> View action
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Key -> Maybe Key
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
pure
div_ :: [Attribute action] -> [View action] -> View action
div_ :: forall action. [Attribute action] -> [View action] -> View action
div_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"div"
table_ :: [Attribute action] -> [View action] -> View action
table_ :: forall action. [Attribute action] -> [View action] -> View action
table_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"table"
thead_ :: [Attribute action] -> [View action] -> View action
thead_ :: forall action. [Attribute action] -> [View action] -> View action
thead_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"thead"
tbody_ :: [Attribute action] -> [View action] -> View action
tbody_ :: forall action. [Attribute action] -> [View action] -> View action
tbody_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"tbody"
tr_ :: [Attribute action] -> [View action] -> View action
tr_ :: forall action. [Attribute action] -> [View action] -> View action
tr_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"tr"
trKeyed_ :: Key -> [Attribute action] -> [View action] -> View action
trKeyed_ :: forall action.
Key -> [Attribute action] -> [View action] -> View action
trKeyed_ = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
"tr" (Maybe Key -> [Attribute action] -> [View action] -> View action)
-> (Key -> Maybe Key)
-> Key
-> [Attribute action]
-> [View action]
-> View action
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Key -> Maybe Key
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
pure
th_ :: [Attribute action] -> [View action] -> View action
th_ :: forall action. [Attribute action] -> [View action] -> View action
th_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"th"
td_ :: [Attribute action] -> [View action] -> View action
td_ :: forall action. [Attribute action] -> [View action] -> View action
td_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"td"
tfoot_ :: [Attribute action] -> [View action] -> View action
= MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"tfoot"
section_ :: [Attribute action] -> [View action] -> View action
section_ :: forall action. [Attribute action] -> [View action] -> View action
section_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"section"
header_ :: [Attribute action] -> [View action] -> View action
= MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"header"
footer_ :: [Attribute action] -> [View action] -> View action
= MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"footer"
button_ :: [Attribute action] -> [View action] -> View action
button_ :: forall action. [Attribute action] -> [View action] -> View action
button_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"button"
form :: [Attribute action] -> [View action] -> View action
form :: forall action. [Attribute action] -> [View action] -> View action
form = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"form"
p_ :: [Attribute action] -> [View action] -> View action
p_ :: forall action. [Attribute action] -> [View action] -> View action
p_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"p"
s_ :: [Attribute action] -> [View action] -> View action
s_ :: forall action. [Attribute action] -> [View action] -> View action
s_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"s"
ul_ :: [Attribute action] -> [View action] -> View action
ul_ :: forall action. [Attribute action] -> [View action] -> View action
ul_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"ul"
span_ :: [Attribute action] -> [View action] -> View action
span_ :: forall action. [Attribute action] -> [View action] -> View action
span_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"span"
strong_ :: [Attribute action] -> [View action] -> View action
strong_ :: forall action. [Attribute action] -> [View action] -> View action
strong_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"strong"
li_ :: [Attribute action] -> [View action] -> View action
li_ :: forall action. [Attribute action] -> [View action] -> View action
li_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"li"
liKeyed_ :: Key -> [Attribute action] -> [View action] -> View action
liKeyed_ :: forall action.
Key -> [Attribute action] -> [View action] -> View action
liKeyed_ = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
"li" (Maybe Key -> [Attribute action] -> [View action] -> View action)
-> (Key -> Maybe Key)
-> Key
-> [Attribute action]
-> [View action]
-> View action
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Key -> Maybe Key
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
pure
h1_ :: [Attribute action] -> [View action] -> View action
h1_ :: forall action. [Attribute action] -> [View action] -> View action
h1_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h1"
h2_ :: [Attribute action] -> [View action] -> View action
h2_ :: forall action. [Attribute action] -> [View action] -> View action
h2_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h2"
h3_ :: [Attribute action] -> [View action] -> View action
h3_ :: forall action. [Attribute action] -> [View action] -> View action
h3_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h3"
h4_ :: [Attribute action] -> [View action] -> View action
h4_ :: forall action. [Attribute action] -> [View action] -> View action
h4_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h4"
h5_ :: [Attribute action] -> [View action] -> View action
h5_ :: forall action. [Attribute action] -> [View action] -> View action
h5_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h5"
h6_ :: [Attribute action] -> [View action] -> View action
h6_ :: forall action. [Attribute action] -> [View action] -> View action
h6_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"h6"
hr_ :: [Attribute action] -> View action
hr_ :: forall action. [Attribute action] -> View action
hr_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"hr") []
pre_ :: [Attribute action] -> [View action] -> View action
pre_ :: forall action. [Attribute action] -> [View action] -> View action
pre_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"pre"
input_ :: [Attribute action] -> View action
input_ :: forall action. [Attribute action] -> View action
input_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"input") []
label_ :: [Attribute action] -> [View action] -> View action
label_ :: forall action. [Attribute action] -> [View action] -> View action
label_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"label"
a_ :: [Attribute action] -> [View action] -> View action
a_ :: forall action. [Attribute action] -> [View action] -> View action
a_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"a"
mark_ :: [Attribute action] -> [View action] -> View action
mark_ :: forall action. [Attribute action] -> [View action] -> View action
mark_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"mark"
ruby_ :: [Attribute action] -> [View action] -> View action
ruby_ :: forall action. [Attribute action] -> [View action] -> View action
ruby_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"ruby"
rt_ :: [Attribute action] -> [View action] -> View action
rt_ :: forall action. [Attribute action] -> [View action] -> View action
rt_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"rt"
rp_ :: [Attribute action] -> [View action] -> View action
rp_ :: forall action. [Attribute action] -> [View action] -> View action
rp_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"rp"
bdi_ :: [Attribute action] -> [View action] -> View action
bdi_ :: forall action. [Attribute action] -> [View action] -> View action
bdi_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"bdi"
bdo_ :: [Attribute action] -> [View action] -> View action
bdo_ :: forall action. [Attribute action] -> [View action] -> View action
bdo_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"bdo"
wbr_ :: [Attribute action] -> View action
wbr_ :: forall action. [Attribute action] -> View action
wbr_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"wbr") []
details_ :: [Attribute action] -> [View action] -> View action
details_ :: forall action. [Attribute action] -> [View action] -> View action
details_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"details"
summary_ :: [Attribute action] -> [View action] -> View action
summary_ :: forall action. [Attribute action] -> [View action] -> View action
summary_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"summary"
menu_ :: [Attribute action] -> [View action] -> View action
= MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"menu"
fieldset_ :: [Attribute action] -> [View action] -> View action
fieldset_ :: forall action. [Attribute action] -> [View action] -> View action
fieldset_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"fieldset"
legend_ :: [Attribute action] -> [View action] -> View action
legend_ :: forall action. [Attribute action] -> [View action] -> View action
legend_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"legend"
datalist_ :: [Attribute action] -> [View action] -> View action
datalist_ :: forall action. [Attribute action] -> [View action] -> View action
datalist_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"datalist"
optgroup_ :: [Attribute action] -> [View action] -> View action
optgroup_ :: forall action. [Attribute action] -> [View action] -> View action
optgroup_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"optgroup"
output_ :: [Attribute action] -> [View action] -> View action
output_ :: forall action. [Attribute action] -> [View action] -> View action
output_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"output"
progress_ :: [Attribute action] -> [View action] -> View action
progress_ :: forall action. [Attribute action] -> [View action] -> View action
progress_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"progress"
meter_ :: [Attribute action] -> [View action] -> View action
meter_ :: forall action. [Attribute action] -> [View action] -> View action
meter_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"meter"
audio_ :: [Attribute action] -> [View action] -> View action
audio_ :: forall action. [Attribute action] -> [View action] -> View action
audio_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"audio"
video_ :: [Attribute action] -> [View action] -> View action
video_ :: forall action. [Attribute action] -> [View action] -> View action
video_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"video"
source_ :: [Attribute action] -> View action
source_ :: forall action. [Attribute action] -> View action
source_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"source") []
track_ :: [Attribute action] -> View action
track_ :: forall action. [Attribute action] -> View action
track_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"track") []
embed_ :: [Attribute action] -> View action
embed_ :: forall action. [Attribute action] -> View action
embed_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"embed") []
object_ :: [Attribute action] -> [View action] -> View action
object_ :: forall action. [Attribute action] -> [View action] -> View action
object_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"object"
ins_ :: [Attribute action] -> [View action] -> View action
ins_ :: forall action. [Attribute action] -> [View action] -> View action
ins_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"ins"
del_ :: [Attribute action] -> [View action] -> View action
del_ :: forall action. [Attribute action] -> [View action] -> View action
del_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"del"
small_ :: [Attribute action] -> [View action] -> View action
small_ :: forall action. [Attribute action] -> [View action] -> View action
small_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"small"
cite_ :: [Attribute action] -> [View action] -> View action
cite_ :: forall action. [Attribute action] -> [View action] -> View action
cite_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"cite"
dfn_ :: [Attribute action] -> [View action] -> View action
dfn_ :: forall action. [Attribute action] -> [View action] -> View action
dfn_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"dfn"
abbr_ :: [Attribute action] -> [View action] -> View action
abbr_ :: forall action. [Attribute action] -> [View action] -> View action
abbr_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"abbr"
time_ :: [Attribute action] -> [View action] -> View action
time_ :: forall action. [Attribute action] -> [View action] -> View action
time_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"time"
var_ :: [Attribute action] -> [View action] -> View action
var_ :: forall action. [Attribute action] -> [View action] -> View action
var_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"var"
samp_ :: [Attribute action] -> [View action] -> View action
samp_ :: forall action. [Attribute action] -> [View action] -> View action
samp_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"samp"
kbd_ :: [Attribute action] -> [View action] -> View action
kbd_ :: forall action. [Attribute action] -> [View action] -> View action
kbd_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"kbd"
caption_ :: [Attribute action] -> [View action] -> View action
caption_ :: forall action. [Attribute action] -> [View action] -> View action
caption_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"caption"
colgroup_ :: [Attribute action] -> [View action] -> View action
colgroup_ :: forall action. [Attribute action] -> [View action] -> View action
colgroup_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"colgroup"
col_ :: [Attribute action] -> View action
col_ :: forall action. [Attribute action] -> View action
col_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"col") []
nav_ :: [Attribute action] -> [View action] -> View action
nav_ :: forall action. [Attribute action] -> [View action] -> View action
nav_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"nav"
article_ :: [Attribute action] -> [View action] -> View action
article_ :: forall action. [Attribute action] -> [View action] -> View action
article_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"article"
aside_ :: [Attribute action] -> [View action] -> View action
aside_ :: forall action. [Attribute action] -> [View action] -> View action
aside_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"aside"
address_ :: [Attribute action] -> [View action] -> View action
address_ :: forall action. [Attribute action] -> [View action] -> View action
address_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"address"
main_ :: [Attribute action] -> [View action] -> View action
main_ :: forall action. [Attribute action] -> [View action] -> View action
main_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"main"
body_ :: [Attribute action] -> [View action] -> View action
body_ :: forall action. [Attribute action] -> [View action] -> View action
body_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"body"
figure_ :: [Attribute action] -> [View action] -> View action
figure_ :: forall action. [Attribute action] -> [View action] -> View action
figure_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"figure"
figcaption_ :: [Attribute action] -> [View action] -> View action
figcaption_ :: forall action. [Attribute action] -> [View action] -> View action
figcaption_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"figcaption"
dl_ :: [Attribute action] -> [View action] -> View action
dl_ :: forall action. [Attribute action] -> [View action] -> View action
dl_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"dl"
dt_ :: [Attribute action] -> [View action] -> View action
dt_ :: forall action. [Attribute action] -> [View action] -> View action
dt_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"dt"
dd_ :: [Attribute action] -> [View action] -> View action
dd_ :: forall action. [Attribute action] -> [View action] -> View action
dd_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"dd"
img_ :: [Attribute action] -> View action
img_ :: forall action. [Attribute action] -> View action
img_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"img") []
iframe_ :: [Attribute action] -> [View action] -> View action
iframe_ :: forall action. [Attribute action] -> [View action] -> View action
iframe_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"iframe"
canvas_ :: [Attribute action] -> [View action] -> View action
canvas_ :: forall action. [Attribute action] -> [View action] -> View action
canvas_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"canvas"
select_ :: [Attribute action] -> [View action] -> View action
select_ :: forall action. [Attribute action] -> [View action] -> View action
select_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"select"
option_ :: [Attribute action] -> [View action] -> View action
option_ :: forall action. [Attribute action] -> [View action] -> View action
option_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"option"
textarea_ :: [Attribute action] -> [View action] -> View action
textarea_ :: forall action. [Attribute action] -> [View action] -> View action
textarea_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"textarea"
sub_ :: [Attribute action] -> [View action] -> View action
sub_ :: forall action. [Attribute action] -> [View action] -> View action
sub_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"sub"
sup_ :: [Attribute action] -> [View action] -> View action
sup_ :: forall action. [Attribute action] -> [View action] -> View action
sup_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"sup"
br_ :: [Attribute action] -> View action
br_ :: forall action. [Attribute action] -> View action
br_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"br") []
ol_ :: [Attribute action] -> [View action] -> View action
ol_ :: forall action. [Attribute action] -> [View action] -> View action
ol_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"ol"
blockquote_ :: [Attribute action] -> [View action] -> View action
blockquote_ :: forall action. [Attribute action] -> [View action] -> View action
blockquote_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"blockquote"
code_ :: [Attribute action] -> [View action] -> View action
code_ :: forall action. [Attribute action] -> [View action] -> View action
code_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"code"
em_ :: [Attribute action] -> [View action] -> View action
em_ :: forall action. [Attribute action] -> [View action] -> View action
em_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"em"
i_ :: [Attribute action] -> [View action] -> View action
i_ :: forall action. [Attribute action] -> [View action] -> View action
i_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"i"
b_ :: [Attribute action] -> [View action] -> View action
b_ :: forall action. [Attribute action] -> [View action] -> View action
b_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"b"
u_ :: [Attribute action] -> [View action] -> View action
u_ :: forall action. [Attribute action] -> [View action] -> View action
u_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"u"
q_ :: [Attribute action] -> [View action] -> View action
q_ :: forall action. [Attribute action] -> [View action] -> View action
q_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"q"
link_ :: [Attribute action] -> View action
link_ :: forall action. [Attribute action] -> View action
link_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"link") []
style_ :: [Attribute action] -> MisoString -> View action
style_ :: forall action. [Attribute action] -> MisoString -> View action
style_ [Attribute action]
attrs MisoString
rawText = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
"style" Maybe Key
forall a. Maybe a
Nothing [Attribute action]
attrs [MisoString -> View action
forall action. MisoString -> View action
textRaw MisoString
rawText]
script_ :: [Attribute action] -> MisoString -> View action
script_ :: forall action. [Attribute action] -> MisoString -> View action
script_ [Attribute action]
attrs MisoString
rawText = NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
forall action.
NS
-> MisoString
-> Maybe Key
-> [Attribute action]
-> [View action]
-> View action
node NS
HTML MisoString
"script" Maybe Key
forall a. Maybe a
Nothing [Attribute action]
attrs [MisoString -> View action
forall action. MisoString -> View action
textRaw MisoString
rawText]
doctype_ :: View action
doctype_ :: forall action. View action
doctype_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"doctype" [] []
html_ :: [Attribute action] -> [View action] -> View action
html_ :: forall action. [Attribute action] -> [View action] -> View action
html_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"html"
head_ :: [Attribute action] -> [View action] -> View action
head_ :: forall action. [Attribute action] -> [View action] -> View action
head_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"head"
meta_ :: [Attribute action] -> View action
meta_ :: forall action. [Attribute action] -> View action
meta_ = ([Attribute action] -> [View action] -> View action)
-> [View action] -> [Attribute action] -> View action
forall a b c. (a -> b -> c) -> b -> a -> c
flip (MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"meta") []
area_ :: [Attribute action] -> [View action] -> View action
area_ :: forall action. [Attribute action] -> [View action] -> View action
area_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"area"
base_ :: [Attribute action] -> [View action] -> View action
base_ :: forall action. [Attribute action] -> [View action] -> View action
base_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"base"
data_ :: [Attribute action] -> [View action] -> View action
data_ :: forall action. [Attribute action] -> [View action] -> View action
data_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"data"
dialog_ :: [Attribute action] -> [View action] -> View action
dialog_ :: forall action. [Attribute action] -> [View action] -> View action
dialog_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"dialog"
fencedframe_ :: [Attribute action] -> [View action] -> View action
fencedframe_ :: forall action. [Attribute action] -> [View action] -> View action
fencedframe_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"fencedframe"
hgroup_ :: [Attribute action] -> [View action] -> View action
hgroup_ :: forall action. [Attribute action] -> [View action] -> View action
hgroup_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"hgroup"
map_ :: [Attribute action] -> [View action] -> View action
map_ :: forall action. [Attribute action] -> [View action] -> View action
map_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"map"
noscript_ :: [Attribute action] -> [View action] -> View action
noscript_ :: forall action. [Attribute action] -> [View action] -> View action
noscript_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"noscript"
picture_ :: [Attribute action] -> [View action] -> View action
picture_ :: forall action. [Attribute action] -> [View action] -> View action
picture_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"picture"
search_ :: [Attribute action] -> [View action] -> View action
search_ :: forall action. [Attribute action] -> [View action] -> View action
search_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"search"
slot_ :: [Attribute action] -> [View action] -> View action
slot_ :: forall action. [Attribute action] -> [View action] -> View action
slot_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"slot"
template_ :: [Attribute action] -> [View action] -> View action
template_ :: forall action. [Attribute action] -> [View action] -> View action
template_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"template"
title_ :: [Attribute action] -> [View action] -> View action
title_ :: forall action. [Attribute action] -> [View action] -> View action
title_ = MisoString -> [Attribute action] -> [View action] -> View action
forall action.
MisoString -> [Attribute action] -> [View action] -> View action
nodeHtml MisoString
"title"