We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93375af commit 271e593Copy full SHA for 271e593
RELEASE_NOTES.md
@@ -1,6 +1,10 @@
1
Release Notes
2
=============
3
4
+## 1.2.0
5
+
6
+- Added missing `iframe` element ([#9](https://github.com/giraffe-fsharp/Giraffe.ViewEngine/issues/9))
7
8
## 1.1.1
9
10
- Fixed the `strf` function (see [#6](https://github.com/giraffe-fsharp/Giraffe.ViewEngine/issues/6))
src/Giraffe.ViewEngine/Engine.fs
@@ -232,6 +232,9 @@ module HtmlElements =
232
let menuitem = voidTag "menuitem"
233
let summary = tag "summary"
234
235
+ // Others
236
+ let iframe = tag "iframe"
237
238
// ---------------------------
239
// Default HTML attributes
240
0 commit comments