diff options
-rwxr-xr-x | js/stmd.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ var reHrule = /^(?:(?:\* *){3,}|(?:_ *){3,}|(?:- *){3,}) *$/; // Matches a character with a special meaning in markdown, // or a string of non-special characters. -var reMain = /[\n`\[\]\\!<&*_]|[^\n`\[\]\\!<&*_]+/m; +var reMain = /^(?:[\n`\[\]\\!<&*_]|[^\n`\[\]\\!<&*_]+)/m; // UTILITY FUNCTIONS |