Skip to content

Commit 54f5d8e

Browse files
authored
Add optional descriptions as internal (for now) documentation (web-platform-dx#598)
1 parent 15aef78 commit 54f5d8e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

feature-group-definitions/input-event.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: input event
2+
description: The `input` event fires when a form control changes or an element with the `contenteditable` attribute changes.
23
spec: https://w3c.github.io/uievents/#event-type-input
34
caniuse: input-event
45
status:

feature-group-definitions/webvtt.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: WebVTT
2+
description: WebVTT is a captions and subtitles format. WebVTT files are loaded using the `<track>` element, and the `VTTCue` API can be used to create or update cues dynamically.
23
spec: https://w3c.github.io/webvtt/
34
caniuse: webvtt
45
usage_stats: https://chromestatus.com/metrics/feature/timeline/popularity/409

index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ const monthsFromBaselineLowToHigh = 30;
1212

1313
// Some FeatureData keys aren't (and may never) be ready for publishing.
1414
// They're not part of the public schema (yet).
15-
// They'll be removed.
1615
const omittables = [
17-
// "compat_features"
16+
"description"
1817
]
1918

2019
function scrub(data: FeatureData) {

0 commit comments

Comments
 (0)