this repo has no description

allow styles immediately after a comma

12Me21 361a72a1 af4e4a0c

+2 -2
+2 -2
parse.js
··· 287 287 // parsing // 288 288 289 289 const STYLE_START 290 - = /^[\s][^\s,]|^['"}{(>|][^\s,'"]/ 290 + = /^[\s,][^\s,]|^['"}{(>|][^\s,'"]/ 291 291 const STYLE_END 292 292 = /^[^\s,][-\s.,:;!?'"}{)<\\|]/ 293 293 const ITALIC_START 294 - = /^[\s][^\s,/]|^['"}{(>|][^\s,'"/<]/ 294 + = /^[\s,][^\s,/]|^['"}{(>|][^\s,'"/<]/ 295 295 const ITALIC_END 296 296 = /^[^\s,/>][-\s.,:;!?'"}{)<\\|]/ 297 297