Fix the documentation formatting

There's no lexer for `grammar` supported by Jekyll, custom styles such as
`{.good}` are also not supported.

PiperOrigin-RevId: 178607733
diff --git a/site/docs/skylark/spec.md b/site/docs/skylark/spec.md
index 1ae24c1..a7ba6a6 100644
--- a/site/docs/skylark/spec.md
+++ b/site/docs/skylark/spec.md
@@ -67,7 +67,7 @@
 
 Grammar notation:
 
-```grammar {.good}
+```text
 - lowercase and 'quoted' items are lexical tokens.
 - Capitalized names denote grammar productions.
 - (...) implies grouping.
@@ -82,7 +82,7 @@
 Each token is formed from the longest sequence of characters that
 would form a valid token of each kind.
 
-```grammar {.good}
+```text
 File = {Statement | newline} eof .
 ```
 
@@ -162,7 +162,7 @@
 
 Integer literal tokens are defined by the following grammar:
 
-```grammar {.good}
+```text
 int         = decimal_lit | octal_lit | hex_lit | 0 .
 decimal_lit = ('1' … '9') {decimal_digit} .
 octal_lit   = '0' ('o' | 'O') octal_digit {octal_digit} .
@@ -1127,7 +1127,7 @@
 The grammar uses `Expression` where a multiple-component expression is allowed,
 and `Test` where it accepts an expression of only a single component.
 
-```grammar {.good}
+```text
 Expression = Test {',' Test} .
 
 Test = IfExpr | PrimaryExpr | UnaryExpr | BinaryExpr .
@@ -1155,7 +1155,7 @@
 
 ### Identifiers
 
-```grammar {.good} {.good}
+```text {.good}
 Primary = identifier
 ```
 
@@ -1167,7 +1167,7 @@
 
 Skylark supports string literals of three different kinds:
 
-```grammar {.good}
+```text
 Primary = int | string
 ```
 
@@ -1177,7 +1177,7 @@
 
 ### Parenthesized expressions
 
-```grammar {.good}
+```text
 Primary = '(' [Expression] ')'
 ```
 
@@ -1227,7 +1227,7 @@
 a new dictionary object.
 An optional comma may follow the final pair.
 
-```grammar {.good}
+```text
 DictExpr = '{' [Entries [',']] '}' .
 Entries  = Entry {',' Entry} .
 Entry    = Test ':' Test .
@@ -1254,7 +1254,7 @@
 enclosed in square brackets, and it yields a new list object.
 An optional comma may follow the last element expression.
 
-```grammar {.good}
+```text
 ListExpr = '[' [Expression [',']] ']' .
 ```
 
@@ -1273,7 +1273,7 @@
 There are two unary operators, both appearing before their operand:
 `-`, and `not`.
 
-```grammar {.good}
+```text
 UnaryExpr = '-' PrimaryExpr
           | 'not' Test
           .
@@ -1324,7 +1324,7 @@
 so the parser will not accept `0 <= i < n`.
 All other binary operators of equal precedence associate to the left.
 
-```grammar {.good}
+```text
 BinaryExpr = Test {Binop Test} .
 
 Binop = 'or'
@@ -1569,7 +1569,7 @@
 If it's true, it evaluates `a` and yields its value;
 otherwise it yields the value of `b`.
 
-```grammar {.good}
+```text
 IfExpr = Test 'if' Test 'else' Test .
 ```
 
@@ -1595,7 +1595,7 @@
 A sequence of `for` and `if` clauses acts like a nested sequence of
 `for` and `if` statements.
 
-```grammar {.good}
+```text
 ListComp = '[' Test {CompClause} ']'.
 DictComp = '{' Entry {CompClause} '}' .
 
@@ -1649,7 +1649,7 @@
 
 ### Function and method calls
 
-```grammar {.good}
+```text
 CallSuffix = '(' [Arguments] ')' .
 
 Arguments = Argument {',' Argument} .
@@ -1679,7 +1679,7 @@
 Methods belong to the built-in types `string`, `list`, and `dict`,
 and to many application-defined types.
 
-```grammar {.good}
+```text
 DotSuffix = '.' identifier .
 ```
 
@@ -1724,7 +1724,7 @@
 value in the range -`n` ≤ `i` < `n`, where `n` is `len(a)`; any other
 index results in an error.
 
-```grammar {.good}
+```text
 SliceSuffix = '[' [Expression] [':' Test [':' Test]] ']' .
 ```
 
@@ -1764,7 +1764,7 @@
 A slice expression `a[start:stop:stride]` yields a new value containing a
 subsequence of `a`, which must be a string, tuple, or list.
 
-```grammar {.good}
+```text
 SliceSuffix = '[' [Expression] [':' Test [':' Test]] ']' .
 ```
 
@@ -1816,7 +1816,7 @@
 
 ## Statements
 
-```grammar {.good}
+```text
 Statement  = DefStmt | IfStmt | ForStmt | SimpleStmt .
 SimpleStmt = SmallStmt {';' SmallStmt} [';'] '\n' .
 SmallStmt  = ReturnStmt
@@ -1833,7 +1833,7 @@
 syntax requires a statement but no behavior is required, such as the
 body of a function that does nothing.
 
-```grammar {.good}
+```text
 PassStmt = 'pass' .
 ```
 
@@ -1857,7 +1857,7 @@
 expression on the right-hand side then assigns its value (or values) to
 the variable (or variables) on the left-hand side.
 
-```grammar {.good}
+```text
 AssignStmt = Expression '=' Expression .
 ```
 
@@ -1900,7 +1900,7 @@
 `+`, `-`, `*`, `/`, `//`, `%`) to the previous value of `lhs` and the value
 of `rhs`.
 
-```grammar {.good}
+```text
 AssignStmt = Expression ('=' | '+=' | '-=' | '*=' | '/=' | '//=' | '%=') Expression .
 ```
 
@@ -1934,7 +1934,7 @@
 
 A `def` statement creates a named function and assigns it to a variable.
 
-```grammar {.good}
+```text
 DefStmt = 'def' identifier '(' [Parameters [',']] ')' ':' Suite .
 ```
 
@@ -1996,7 +1996,7 @@
 A `return` statement ends the execution of a function and returns a
 value to the caller of the function.
 
-```grammar {.good}
+```text
 ReturnStmt = 'return' Expression .
 ```
 
@@ -2016,7 +2016,7 @@
 
 An expression statement evaluates an expression and discards its result.
 
-```grammar {.good}
+```text
 ExprStmt = Expression .
 ```
 
@@ -2033,7 +2033,7 @@
 the truth value of the condition is `True`, executes a list of
 statements.
 
-```grammar {.good}
+```text
 IfStmt = 'if' Test ':' Suite {'elif' Test ':' Suite} ['else' ':' Suite] .
 ```
 
@@ -2080,7 +2080,7 @@
 the successive element values to one or more variables and executes a
 list of statements, the _loop body_.
 
-```grammar {.good}
+```text
 ForStmt = 'for' LoopVariables 'in' Expression ':' Suite .
 ```
 
@@ -2118,7 +2118,7 @@
 of a `for` loop.  Whereas the `continue` statement resumes the loop at
 the next iteration, a `break` statement terminates the entire loop.
 
-```grammar {.good}
+```text
 BreakStmt    = 'break' .
 ContinueStmt = 'continue' .
 ```
@@ -2153,7 +2153,7 @@
 
 Syntactically, a load statement looks like a function call `load(...)`.
 
-```grammar {.good}
+```text
 LoadStmt = 'load' '(' string {',' [identifier '='] string} [','] ')' .
 ```
 
@@ -3165,7 +3165,7 @@
 
 ## Grammar reference
 
-```grammar {.good}
+```text
 File = {Statement | newline} eof .
 
 Statement = DefStmt | IfStmt | ForStmt | SimpleStmt .