mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-31 11:17:35 +02:00
Fix rendering on github
This commit is contained in:
@@ -19,8 +19,7 @@ integer ::= digit+
|
|||||||
digit ::= "0"..."9"
|
digit ::= "0"..."9"
|
||||||
identifier ::= id_start id_continue*
|
identifier ::= id_start id_continue*
|
||||||
id_start ::= "a"..."z" | "A"..."Z" | "_"
|
id_start ::= "a"..."z" | "A"..."Z" | "_"
|
||||||
id_continue ::= id_start | digit
|
id_continue ::= id_start | digit</code>
|
||||||
</code>
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
In less formal terms, the replacement field can start with an *arg_id* that
|
In less formal terms, the replacement field can start with an *arg_id* that
|
||||||
@@ -84,8 +83,7 @@ width ::= <a href="#replacement-field">integer</a> | "{" [<a
|
|||||||
precision ::= <a href="#replacement-field">integer</a> | "{" [<a
|
precision ::= <a href="#replacement-field">integer</a> | "{" [<a
|
||||||
href="#replacement-field">arg_id</a>] "}"
|
href="#replacement-field">arg_id</a>] "}"
|
||||||
type ::= "a" | "A" | "b" | "B" | "c" | "d" | "e" | "E" | "f" | "F" |
|
type ::= "a" | "A" | "b" | "B" | "c" | "d" | "e" | "E" | "f" | "F" |
|
||||||
"g" | "G" | "o" | "p" | "s" | "x" | "X" | "?"
|
"g" | "G" | "o" | "p" | "s" | "x" | "X" | "?"</code>
|
||||||
</code>
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
The *fill* character can be any Unicode code point other than `'{'` or `'}'`.
|
The *fill* character can be any Unicode code point other than `'{'` or `'}'`.
|
||||||
@@ -416,8 +414,7 @@ chrono_type ::= "a" | "A" | "b" | "B" | "c" | "C" | "d" | "D" | "e" |
|
|||||||
"F" | "g" | "G" | "h" | "H" | "I" | "j" | "m" | "M" |
|
"F" | "g" | "G" | "h" | "H" | "I" | "j" | "m" | "M" |
|
||||||
"n" | "p" | "q" | "Q" | "r" | "R" | "S" | "t" | "T" |
|
"n" | "p" | "q" | "Q" | "r" | "R" | "S" | "t" | "T" |
|
||||||
"u" | "U" | "V" | "w" | "W" | "x" | "X" | "y" | "Y" |
|
"u" | "U" | "V" | "w" | "W" | "x" | "X" | "y" | "Y" |
|
||||||
"z" | "Z" | "%"
|
"z" | "Z" | "%"</code>
|
||||||
</code>
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
Literal chars are copied unchanged to the output. Precision is valid only
|
Literal chars are copied unchanged to the output. Precision is valid only
|
||||||
|
Reference in New Issue
Block a user