diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/lib/inlines.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/lib/inlines.js b/js/lib/inlines.js index 553be53..70247cd 100644 --- 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. |