Skip to content

Commit

Permalink
Add multipage to compact form section
Browse files Browse the repository at this point in the history
Completes the compact form section in the doc to mention that `multipage` is one
of the properties that can be compacted. SVG2 is used as an example.
  • Loading branch information
tidoust authored Apr 6, 2021
1 parent 9348454 commit 4f98152
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,17 @@ the spec, allowing to keep using a string instead of an object in most cases:
- A delta spec can be defined by appending a `delta` keyword to the URL, instead
of through the `seriesComposition`.
- The `forceCurrent` flag can be set by appending a `current` keyword to the URL
- The `multipage` flag can be set by appending a `multipage` keyword to the URL

For instance, to flag the CSS Fragmentation Module Level 3 as the current spec
in the series, and the CSS Grid Layout Module Level 2 as a delta spec, use the
following compact definitions:
in the series, the CSS Grid Layout Module Level 2 as a delta spec, and the SVG2
spec as a multipage spec, use the following compact definitions:

```json
[
"https://www.w3.org/TR/css-break-3/ current",
"https://www.w3.org/TR/css-grid-2/ delta"
"https://www.w3.org/TR/css-grid-2/ delta",
"https://www.w3.org/TR/SVG2/ multipage"
]
```

Expand Down Expand Up @@ -155,4 +157,4 @@ npm run lint-fix
```

**Note:** The linter cannot fix broken JSON and/or incorrect properties. Please
fix these errors manually and run the linter again.
fix these errors manually and run the linter again.

0 comments on commit 4f98152

Please sign in to comment.