Skip to content

Commit

Permalink
Bring back the dd and dt tags, which are not deprecated but just don'…
Browse files Browse the repository at this point in the history
…t have a type in Scala.js DOM (#477)
  • Loading branch information
shadaj authored May 14, 2021
1 parent 83fc099 commit b5afcae
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions web/html.json
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,20 @@
"docLines" : [
"The <strong>HTML <code>&lt;wbr&gt;</code> element</strong> represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location."
]
},
{
"tagName" : "dd",
"scalaJSType": "org.scalajs.dom.html.Element",
"docLines" : [
"The&nbsp;<strong>HTML <code>&lt;dd&gt;</code> element</strong> indicates the description of a term in a description list (<a title=\"The HTML <dl>&nbsp;element represents a description list.&nbsp;The element encloses a list of groups of terms and descriptions. Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).\" href=\"/en-US/docs/Web/HTML/Element/dl\"><code>&lt;dl&gt;</code></a>)."
]
},
{
"tagName" : "dt",
"scalaJSType": "org.scalajs.dom.html.Element",
"docLines" : [
"The <strong>HTML <code>&lt;dt&gt;</code> element</strong> identifies a term in a description list. This element can occur only as a child element of a <a title=\"The HTML <dl>&nbsp;element represents a description list.&nbsp;The element encloses a list of groups of terms and descriptions. Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).\" href=\"/en-US/docs/Web/HTML/Element/dl\"><code>&lt;dl&gt;</code></a>. It is usually followed by a <a title=\"The&nbsp;HTML <dd> element indicates the description of a term in a description list (<dl>).\" href=\"/en-US/docs/Web/HTML/Element/dd\"><code>&lt;dd&gt;</code></a> element; however, multiple <code>&lt;dt&gt;</code> elements in a row indicate several terms that are all defined by the immediate next <a title=\"The&nbsp;HTML <dd> element indicates the description of a term in a description list (<dl>).\" href=\"/en-US/docs/Web/HTML/Element/dd\"><code>&lt;dd&gt;</code></a> element."
]
}
],
"attributes" : [
Expand Down

0 comments on commit b5afcae

Please sign in to comment.