-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add <cite>, <p>, <pre>, and <q> (#1381)
Co-authored-by: Philip Jägenstedt <philip@foolip.org> Co-authored-by: Daniel D. Beck <daniel@ddbeck.com>
- Loading branch information
1 parent
75ec245
commit 4c6d1e6
Showing
10 changed files
with
17 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: <cite> | ||
description: The `<cite>` element represents the title of a quoted, referenced, or mentioned creative work, such as a film or book. | ||
spec: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-cite-element | ||
group: html-elements | ||
compat_features: | ||
- html.elements.cite |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
draft_date: 2024-06-05 | ||
name: <p> | ||
description: The `<p>` element TODO. | ||
description: The `<p>` element represents a paragraph of text. | ||
spec: https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element | ||
group: html | ||
group: html-elements | ||
compat_features: | ||
- api.HTMLParagraphElement | ||
- html.elements.p |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: <pre> | ||
description: The `<pre>` element represents a block element of preformatted text that is presented exactly as written, including all white space. | ||
spec: https://html.spec.whatwg.org/multipage/grouping-content.html#the-pre-element | ||
group: html-elements | ||
compat_features: | ||
- api.HTMLPreElement | ||
- html.elements.pre |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.