- Commit
- 91a9a99d328a1057b28964c35c8da71825d8a306
- Parent
- 2e91bc71409b701a269df5ffaa6301000bf50eab
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Merge pull request #2 from s9e/master
Removed trailing commas in JavaScript objects
My personal build of CMark ✏️
Merge pull request #2 from s9e/master
Removed trailing commas in JavaScript objects
1 file changed, 3 insertions, 3 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | js/stmd.js | 6 | 3 | 3 |
diff --git a/js/stmd.js b/js/stmd.js @@ -736,7 +736,7 @@ function InlineParser(){ parseImage: parseImage, parseReference: parseReference, parseInline: parseInline, - parse: parseInlines, + parse: parseInlines }; } @@ -756,7 +756,7 @@ var makeBlock = function(tag, start_line, start_column) { // string_content is formed by concatenating strings, in finalize: string_content: "", strings: [], - inline_content: [], + inline_content: [] }; }; @@ -1364,7 +1364,7 @@ function DocParser(){ incorporateLine: incorporateLine, finalize: finalize, processInlines: processInlines, - parse: parse, + parse: parse }; }