Skip to content

Commit

Permalink
Regenerated dist files, added minified version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Jun 8, 2015
1 parent 6572a04 commit ad00c1b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
*.bak
*.diff
*#
node_modules/
dist/commonmark.min.js
node_modules/
4 changes: 2 additions & 2 deletions dist/commonmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ var InlineParser = require('./inlines');

var BLOCKTAGNAME = '(?:article|header|aside|hgroup|iframe|blockquote|hr|body|li|map|button|object|canvas|ol|caption|output|col|p|colgroup|pre|dd|progress|div|section|dl|table|td|dt|tbody|embed|textarea|fieldset|tfoot|figcaption|th|figure|thead|footer|footer|tr|form|ul|h1|h2|h3|h4|h5|h6|video|script|style)';

var HTMLBLOCKOPEN = "<(?:" + BLOCKTAGNAME + "[\\s/>]" + "|" +
"/" + BLOCKTAGNAME + "[\\s>]" + "|" + "[?!])";
var HTMLBLOCKOPEN = "<(?:" + BLOCKTAGNAME + "(?:[\\s/>]|$)" + "|" +
"/" + BLOCKTAGNAME + "(?:[\\s>]|$)" + "|" + "[?!])";

var reHtmlBlockOpen = new RegExp('^' + HTMLBLOCKOPEN, 'i');

Expand Down
4 changes: 4 additions & 0 deletions dist/commonmark.min.js

Large diffs are not rendered by default.

0 comments on commit ad00c1b

Please sign in to comment.