Skip to content

Commit a749af6

Browse files
cdoublevsvgeesus
authored andcommitted
[*][editorial] Drop autolinks to value in <pre>
1 parent 05d9b87 commit a749af6

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

css-color-4/Overview.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3734,9 +3734,9 @@ Specifying Predefined Colors: the ''color()'' function</h3>
37343734
<dfn>color()</dfn> = color( <<colorspace-params>> [ / [ <<alpha-value>> | none ] ]? )
37353735
<dfn>&lt;colorspace-params></dfn> = [ <<predefined-rgb-params>> | <<xyz-params>>]
37363736
<dfn>&lt;predefined-rgb-params></dfn> = <<predefined-rgb>> [ <<number>> | <<percentage>> | none ]{3}
3737-
<dfn>&lt;predefined-rgb></dfn> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020''
3737+
<dfn>&lt;predefined-rgb></dfn> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020
37383738
<dfn>&lt;xyz-params></dfn> = <<xyz-space>> [ <<number>> | <<percentage>> | none ]{3}
3739-
<dfn>&lt;xyz-space></dfn> = ''xyz'' | ''xyz-d50'' | ''xyz-d65''
3739+
<dfn>&lt;xyz-space></dfn> = xyz | xyz-d50 | xyz-d65
37403740
</pre>
37413741

37423742
<wpt>
@@ -4682,8 +4682,8 @@ Color Space for Interpolation</h3>
46824682

46834683
<pre class='prod'>
46844684
<dfn export>&lt;color-space></dfn> = &lt;rectangular-color-space> | &lt;polar-color-space>
4685-
<dfn export>&lt;rectangular-color-space></dfn> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020'' | ''lab'' | ''oklab'' | ''xyz'' | ''xyz-d50'' | ''xyz-d65''
4686-
<dfn export>&lt;polar-color-space></dfn> = ''hsl'' | ''hwb'' | ''lch'' | ''oklch''
4685+
<dfn export>&lt;rectangular-color-space></dfn> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | xyz | xyz-d50 | xyz-d65
4686+
<dfn export>&lt;polar-color-space></dfn> = hsl | hwb | lch | oklch
46874687
<dfn export>&lt;hue-interpolation-method></dfn> = [ shorter | longer | increasing | decreasing ] hue
46884688
<dfn export id="color-interpolation-method">&lt;color-interpolation-method></dfn> = in [ <<rectangular-color-space>> | <<polar-color-space>> <<hue-interpolation-method>>? ]
46894689
</pre>

css-color-5/Overview.bs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ or any other color or monochrome output device which has been characterized.
18451845
It's defined as:
18461846

18471847
<pre class='prod'>
1848-
@color-profile = @color-profile [<<dashed-ident>> | ''device-cmyk''] { <<declaration-list>> }
1848+
@color-profile = @color-profile [<<dashed-ident>> | device-cmyk] { <<declaration-list>> }
18491849
</pre>
18501850

18511851
<wpt>
@@ -2407,8 +2407,8 @@ or any other color or monochrome output device which has been characterized.
24072407
<pre class='prod'>
24082408
<dfn>device-cmyk()</dfn> = <<legacy-device-cmyk-syntax>> | <<modern-device-cmyk-syntax>>
24092409
<dfn>&lt;legacy-device-cmyk-syntax></dfn> = device-cmyk( <<number>>#{4} )
2410-
<dfn>&lt;modern-device-cmyk-syntax></dfn> = device-cmyk( <<cmyk-component>>{4} [ / [ <<alpha-value>> | ''none'' ] ]? )
2411-
<dfn>&lt;cmyk-component></dfn> = <<number>> | <<percentage>> | ''none''
2410+
<dfn>&lt;modern-device-cmyk-syntax></dfn> = device-cmyk( <<cmyk-component>>{4} [ / [ <<alpha-value>> | none ] ]? )
2411+
<dfn>&lt;cmyk-component></dfn> = <<number>> | <<percentage>> | none
24122412
</pre>
24132413

24142414
The arguments of the ''device-cmyk()'' function specify the cyan, magenta, yellow, and black components, in order,
@@ -2653,8 +2653,8 @@ or any other color or monochrome output device which has been characterized.
26532653

26542654
<pre class='prod'>
26552655
<dfn export>&lt;color-space></dfn> = <<rectangular-color-space>> | <<polar-color-space>> | <<custom-color-space>>
2656-
<dfn export>&lt;rectangular-color-space></dfn> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020'' | ''lab'' | ''oklab'' | ''xyz'' | ''xyz-d50'' | ''xyz-d65''
2657-
<dfn export>&lt;polar-color-space></dfn> = ''hsl'' | ''hwb'' | ''lch'' | ''oklch''
2656+
<dfn export>&lt;rectangular-color-space></dfn> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | xyz | xyz-d50 | xyz-d65
2657+
<dfn export>&lt;polar-color-space></dfn> = hsl | hwb | lch | oklch
26582658
<dfn export>&lt;custom-color-space></dfn> = <<dashed-ident>>
26592659
<dfn export>&lt;hue-interpolation-method></dfn> = [ shorter | longer | increasing | decreasing ] hue
26602660
<dfn export id="color-interpolation-method">&lt;color-interpolation-method></dfn> = in [ <<rectangular-color-space>> | <<polar-color-space>> <<hue-interpolation-method>>? | <<custom-color-space>> ]

css-easing-2/Overview.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ A <a>cubic Bézier easing function</a> has the following syntax:
599599

600600
<pre class="prod">
601601
<dfn>&lt;cubic-bezier-easing-function></dfn> =
602-
''ease'' | ''ease-in'' | ''ease-out'' | ''ease-in-out'' | <<cubic-bezier()>>
602+
ease | ease-in | ease-out | ease-in-out | <<cubic-bezier()>>
603603
604604
<dfn>cubic-bezier()</dfn> = cubic-bezier( [ <<number [0,1]>>, <<number>> ]#{2} )
605605
</pre>
@@ -781,11 +781,11 @@ It is defined by a number of <dfn for=steps()>steps</dfn>, and a <dfn for=steps(
781781
It has the following syntax:
782782

783783
<pre class="prod">
784-
<dfn>&lt;step-easing-function></dfn> = ''step-start'' | ''step-end'' | <<steps()>>
784+
<dfn>&lt;step-easing-function></dfn> = step-start | step-end | <<steps()>>
785785
786786
<dfn>steps()</dfn> = steps( <<integer>>, <<step-position>>?)
787-
<dfn type>&lt;step-position></dfn> = ''jump-start'' | ''jump-end'' | ''jump-none'' | ''jump-both''
788-
| ''start'' | ''end''
787+
<dfn type>&lt;step-position></dfn> = jump-start | jump-end | jump-none | jump-both
788+
| start | end
789789
</pre>
790790

791791
<wpt>

css-fonts-4/Overview.bs

+6-6
Original file line numberDiff line numberDiff line change
@@ -369,16 +369,16 @@ Syntax of <<generic-family>>
369369

370370
<!-- <pre class=prod>
371371
<dfn><<generic-family>></dfn> = generic(<<generic-script-specific>>) | <<generic-complete>> | <<generic-incomplete>>
372-
<dfn><<generic-script-specific>></dfn> = <a href="">kai</a> | fangsong | nastaliq
372+
<dfn><<generic-script-specific>></dfn> = <a href="">kai</a> | fangsong | nastaliq
373373
<dfn><<generic-complete>></dfn> = serif | sans-serif | system-ui | cursive | fantasy | math | monospace
374-
<dfn><<generic-incomplete>></dfn> = ui-serif | ui-sans-serif | ui-monospace | ui-rounded
374+
<dfn><<generic-incomplete>></dfn> = ui-serif | ui-sans-serif | ui-monospace | ui-rounded
375375
</pre> -->
376376

377377
<pre class=prod>
378378
<dfn><<generic-family>></dfn> = <<generic-script-specific>>| <<generic-complete>> | <<generic-incomplete>>
379-
<dfn><<generic-script-specific>></dfn> = ''generic(fangsong)'' | ''generic(kai)'' | ''generic(khmer-mul)'' | ''generic(nastaliq)''
380-
<dfn><<generic-complete>></dfn> = ''serif'' | ''sans-serif'' | ''system-ui'' | ''cursive'' | ''fantasy'' | ''math'' | ''monospace''
381-
<dfn><<generic-incomplete>></dfn> = ''ui-serif'' | ''ui-sans-serif'' | ''ui-monospace'' | ''ui-rounded''
379+
<dfn><<generic-script-specific>></dfn> = generic(fangsong) | generic(kai) | generic(khmer-mul) | generic(nastaliq)
380+
<dfn><<generic-complete>></dfn> = serif | sans-serif | system-ui | cursive | fantasy | math | monospace
381+
<dfn><<generic-incomplete>></dfn> = ui-serif | ui-sans-serif | ui-monospace | ui-rounded
382382
</pre>
383383

384384
To make the syntax less succeptible to clashes, more recently defined generic font families are identified using a functional syntax.
@@ -401,7 +401,7 @@ Syntax of <<system-family-name>>
401401
</h4>
402402

403403
<pre class="prod">
404-
<l><<system-family-name>></l> = ''caption'' | ''icon'' | ''menu'' | ''message-box'' | ''small-caption'' | ''status-bar''
404+
<l><<system-family-name>></l> = caption | icon | menu | message-box | small-caption | status-bar
405405
</pre>
406406

407407
<h4 id="font-families">

css-shapes-1/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ Shapes from Box Values</h2>
780780
Its syntax is:
781781

782782
<pre class="prod">
783-
<dfn><<shape-box>></dfn> = <<visual-box>> | ''margin-box''
783+
<dfn><<shape-box>></dfn> = <<visual-box>> | margin-box
784784
</pre>
785785

786786
The definitions of the values are:

0 commit comments

Comments
 (0)