diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2015-01-09 15:00:28 -0800 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-09 15:00:28 -0800 | 
| commit | 68521f95431622806279e32a8c015121f7ce1c47 (patch) | |
| tree | 4e4d51935794142ae8b5ae88a8c45530af77e5c5 | |
| parent | 765eedf8944757426ec53ae6edf829f3ca0d003a (diff) | |
Comment fix.
| -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. | 
