You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enforce spec's distinction between Unicode whitespace and regular whitespace
(Timothy Gu, see commonmark/commonmark-spec#343). Per ECMA-262 6th Edition
("ECMAScript 2015") §21.2.2.12 [CharacterClassEscape], the JavaScript \s
escape character matches the characters specified by "Unicode whitespace,"
but not "whitespace." Rename the existing regular expression variable to UnicodeWhitespace, and create and use a new regular expression variable
that only matches the limited set of "whitespace" characters.