tangled
alpha
login
or
join now
ansxor.ca
/
markup2
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
1
pulls
pipelines
allow styles immediately after a comma
12Me21
2 years ago
361a72a1
af4e4a0c
+2
-2
1 changed file
expand all
collapse all
unified
split
parse.js
+2
-2
parse.js
···
287
287
// parsing //
288
288
289
289
const STYLE_START
290
290
-
= /^[\s][^\s,]|^['"}{(>|][^\s,'"]/
290
290
+
= /^[\s,][^\s,]|^['"}{(>|][^\s,'"]/
291
291
const STYLE_END
292
292
= /^[^\s,][-\s.,:;!?'"}{)<\\|]/
293
293
const ITALIC_START
294
294
-
= /^[\s][^\s,/]|^['"}{(>|][^\s,'"/<]/
294
294
+
= /^[\s,][^\s,/]|^['"}{(>|][^\s,'"/<]/
295
295
const ITALIC_END
296
296
= /^[^\s,/>][-\s.,:;!?'"}{)<\\|]/
297
297