Skip to content

Commit

Permalink
chore: fix docs build re: #9384
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Sep 5, 2020
1 parent 8848d4b commit dc1af4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/acquit.js
Expand Up @@ -75,7 +75,7 @@ files.forEach(function(file) {
for (var j = 0; j < block.blocks.length; ++j) {
var b = block.blocks[j];
b.identifier = toHtmlIdentifier(acquit.trimEachLine(b.contents));
b.contents = marked.inlineLexer(acquit.trimEachLine(b.contents), []);
b.contents = marked(acquit.trimEachLine(b.contents), []);
if (b.comments && b.comments.length) {
var last = b.comments.length - 1;
b.comments[last] = marked(acquit.trimEachLine(b.comments[last]));
Expand Down

0 comments on commit dc1af4f

Please sign in to comment.