Whitespace & Indentation
Recognized whitespace characters and how the parser treats them.
EBNF definition
whitespace = ascii_whitespace | unicode_whitespace ;
ascii_whitespace = ? any character with Unicode code point U+0000 to U+0020 ? ;
unicode_whitespace = U+1680 | U+2000 | U+2001 | U+2002 | U+2003 | U+2004
| U+2005 | U+2006 | U+2007 | U+2008 | U+2009 | U+200A
| U+2028 | U+2029 | U+202F | U+205F | U+3000 | U+FEFF ;Whitespace characters
Code points
Description
Notes
Rules
Best practices
See Also
Last updated
Was this helpful?
