File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -562,6 +562,15 @@ ins_ = createElement_ "ins"
562
562
ins' :: forall a h . ToHtml' a h
563
563
ins' = createElement' " ins"
564
564
565
+ kbd :: forall a b h . ToHtml a b h
566
+ kbd = createElement " kbd"
567
+
568
+ kbd_ :: forall b h . ToHtml_ b h
569
+ kbd_ = createElement_ " kbd"
570
+
571
+ kbd' :: forall a h . ToHtml' a h
572
+ kbd' = createElement' " kbd"
573
+
565
574
keygen :: forall a b h . ToHtml a b h
566
575
keygen = createElement " keygen"
567
576
Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ main = AF.launchAff_ $ TSR.runSpec [consoleReporter] do
89
89
html2' <- liftEffect $ FRS .render html2
90
90
TSA .shouldEqual """ <a id="test">TEST</a>""" html2'
91
91
92
- let html3 = HE .a " test" [HE .text " TEST" ]
92
+ let html3 = HE .kbd " test" [HE .text " TEST" ]
93
93
html3' <- liftEffect $ FRS .render html3
94
- TSA .shouldEqual """ <a id="test">TEST</a >""" html3'
94
+ TSA .shouldEqual """ <kbd id="test">TEST</kbd >""" html3'
95
95
96
96
let html4 = HE .a " test" $ HE .text " TEST"
97
97
html4' <- liftEffect $ FRS .render html4
You can’t perform that action at this time.
0 commit comments