diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-08-28 15:32:18 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-08-28 15:32:18 -0700 |
commit | 91a9a99d328a1057b28964c35c8da71825d8a306 (patch) | |
tree | c408855234dc2784db75df110d0edd3313fdf2b8 /js/stmd.js | |
parent | 2e91bc71409b701a269df5ffaa6301000bf50eab (diff) | |
parent | e370845224038e8ba3d789da2784eae2bec71059 (diff) |
Merge pull request #2 from s9e/master
Removed trailing commas in JavaScript objects
Diffstat (limited to 'js/stmd.js')
-rwxr-xr-x | js/stmd.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 }; } |