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 d082444 commit 0d65890Copy full SHA for 0d65890
htmy/html.py
@@ -709,6 +709,18 @@ class i(Tag):
709
tag_config = _DefaultTagConfig.inline_children
710
711
712
+class kbd(Tag):
713
+ """
714
+ `<kbd>` element.
715
+
716
+ See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd.
717
718
719
+ __slots__ = ()
720
721
+ tag_config = _DefaultTagConfig.inline_children
722
723
724
class picture(Tag):
725
"""
726
`<picture>` element.
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "htmy"
3
-version = "0.8.1"
+version = "0.8.2"
4
description = "Async, pure-Python server-side rendering engine."
5
authors = ["Peter Volf <do.volfp@gmail.com>"]
6
license = "MIT"
0 commit comments