Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 451ae73

Browse files
committed
revert back to stricter enforcement to avoid bad json issues
1 parent 870a521 commit 451ae73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/languages/ex.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
module.exports = {
55
// Find document blocks between '#{' and '#}'
6-
docBlocksRegExp: /#*\s?\{\uffff?(.+?)\uffff?(?:\s*)?#+\s?\}/g,
6+
docBlocksRegExp: /\#*\{\uffff?(.+?)\uffff?(?:\s*)?\#+\}/g,
77
// Remove not needed '#' and tabs at the beginning
8-
inlineRegExp: /^(\s*)?(#*)[ ]?/gm
8+
inlineRegExp: /^(\s*)?(\#*)[ ]?/gm
99
};

0 commit comments

Comments
 (0)