diff --git a/css-color-4/Overview.bs b/css-color-4/Overview.bs index ae03c3dbca34..40eb63facbed 100644 --- a/css-color-4/Overview.bs +++ b/css-color-4/Overview.bs @@ -3734,9 +3734,9 @@ Specifying Predefined Colors: the ''color()'' function color() = color( <> [ / [ <> | none ] ]? ) <colorspace-params> = [ <> | <>] <predefined-rgb-params> = <> [ <> | <> | none ]{3} - <predefined-rgb> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020'' + <predefined-rgb> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 <xyz-params> = <> [ <> | <> | none ]{3} - <xyz-space> = ''xyz'' | ''xyz-d50'' | ''xyz-d65'' + <xyz-space> = xyz | xyz-d50 | xyz-d65 @@ -4682,8 +4682,8 @@ Color Space for Interpolation
 		<color-space> = <rectangular-color-space> | <polar-color-space>
-		<rectangular-color-space> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020'' | ''lab'' | ''oklab'' | ''xyz'' | ''xyz-d50'' | ''xyz-d65''
-		<polar-color-space> = ''hsl'' | ''hwb'' | ''lch'' | ''oklch''
+		<rectangular-color-space> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | xyz | xyz-d50 | xyz-d65
+		<polar-color-space> = hsl | hwb | lch | oklch
 		<hue-interpolation-method> = [ shorter | longer | increasing | decreasing ] hue
 		<color-interpolation-method> = in [ <> | <> <>? ]
 	
diff --git a/css-color-5/Overview.bs b/css-color-5/Overview.bs index 19804b1fbc12..33c47675648f 100644 --- a/css-color-5/Overview.bs +++ b/css-color-5/Overview.bs @@ -1845,7 +1845,7 @@ or any other color or monochrome output device which has been characterized. It's defined as:
-		@color-profile = @color-profile [<> | ''device-cmyk''] { <> }
+		@color-profile = @color-profile [<> | device-cmyk] { <> }
 		
@@ -2407,8 +2407,8 @@ or any other color or monochrome output device which has been characterized.
 			device-cmyk() = <> | <>
 			<legacy-device-cmyk-syntax> = device-cmyk( <>#{4} )
-			<modern-device-cmyk-syntax> = device-cmyk( <>{4} [ / [ <> | ''none'' ] ]? )
-			<cmyk-component> = <> | <> | ''none''
+			<modern-device-cmyk-syntax> = device-cmyk( <>{4} [ / [ <> | none ] ]? )
+			<cmyk-component> = <> | <> | none
 		
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.
 		<color-space> = <> | <> | <>
-		<rectangular-color-space> = ''srgb'' | ''srgb-linear'' | ''display-p3'' | ''a98-rgb'' | ''prophoto-rgb'' | ''rec2020'' | ''lab'' | ''oklab'' | ''xyz'' | ''xyz-d50'' | ''xyz-d65''
-		<polar-color-space> = ''hsl'' | ''hwb'' | ''lch'' | ''oklch''
+		<rectangular-color-space> = srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | xyz | xyz-d50 | xyz-d65
+		<polar-color-space> = hsl | hwb | lch | oklch
 		<custom-color-space> = <>
 		<hue-interpolation-method> = [ shorter | longer | increasing | decreasing ] hue
 		<color-interpolation-method> = in [ <> | <> <>? | <> ]
diff --git a/css-easing-2/Overview.bs b/css-easing-2/Overview.bs
index a4594ddd7106..f9902488acb7 100644
--- a/css-easing-2/Overview.bs
+++ b/css-easing-2/Overview.bs
@@ -599,7 +599,7 @@ A cubic Bézier easing function has the following syntax:
 
 
   <cubic-bezier-easing-function> =
-    ''ease'' | ''ease-in'' | ''ease-out'' | ''ease-in-out'' | <>
+    ease | ease-in | ease-out | ease-in-out | <>
 
   cubic-bezier() = cubic-bezier( [ <>, <> ]#{2} )
 
@@ -781,11 +781,11 @@ It is defined by a number of steps, and a - <step-easing-function> = ''step-start'' | ''step-end'' | <> + <step-easing-function> = step-start | step-end | <> steps() = steps( <>, <>?) - <step-position> = ''jump-start'' | ''jump-end'' | ''jump-none'' | ''jump-both'' - | ''start'' | ''end'' + <step-position> = jump-start | jump-end | jump-none | jump-both + | start | end
diff --git a/css-fonts-4/Overview.bs b/css-fonts-4/Overview.bs index 064b35eefc0c..bc34346af7b8 100644 --- a/css-fonts-4/Overview.bs +++ b/css-fonts-4/Overview.bs @@ -369,16 +369,16 @@ Syntax of <>
 	<> = <>| <> | <>
-	<> = ''generic(fangsong)'' | ''generic(kai)'' | ''generic(khmer-mul)'' |  ''generic(nastaliq)''
-	<> = ''serif'' | ''sans-serif'' | ''system-ui'' | ''cursive'' | ''fantasy'' | ''math'' | ''monospace''
-	<> = ''ui-serif'' | ''ui-sans-serif'' | ''ui-monospace'' | ''ui-rounded''
+	<> = generic(fangsong) | generic(kai) | generic(khmer-mul) |  generic(nastaliq)
+	<> = serif | sans-serif | system-ui | cursive | fantasy | math | monospace
+	<> = ui-serif | ui-sans-serif | ui-monospace | ui-rounded
 
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 <>
-		<> = ''caption'' | ''icon'' | ''menu'' | ''message-box'' | ''small-caption'' | ''status-bar''
+		<> = caption | icon | menu | message-box | small-caption | status-bar
 	

diff --git a/css-shapes-1/Overview.bs b/css-shapes-1/Overview.bs index 507a67c09541..d6d91bdf5274 100644 --- a/css-shapes-1/Overview.bs +++ b/css-shapes-1/Overview.bs @@ -780,7 +780,7 @@ Shapes from Box Values

Its syntax is:
-		<> = <> | ''margin-box''
+		<> = <> | margin-box
 	
The definitions of the values are: