cmark

My personal build of CMark ✏️

Commit
68521f95431622806279e32a8c015121f7ce1c47
Parent
765eedf8944757426ec53ae6edf829f3ca0d003a
Author
John MacFarlane <jgm@berkeley.edu>
Date

Comment fix.

Diffstat

1 file changed, 1 insertion, 3 deletions

Status File Name N° Changes Insertions Deletions
Modified js/lib/inlines.js 4 1 3
diff --git a/js/lib/inlines.js b/js/lib/inlines.js
@@ -68,9 +68,7 @@ var reEntityHere = new RegExp('^' + ENTITY, 'i');
 
 var reEntity = new RegExp(ENTITY, 'gi');
 
-// Matches a character with a special meaning in markdown,
-// or a string of non-special characters.  Note:  we match
-// clumps of _ or * or `, because they need to be handled in groups.
+// Matches a string of non-special characters.
 var reMain = /^[^\n`\[\]\\!<&*_]+/m;
 
 // Replace entities and backslash escapes with literal characters.