Skip to content

Commit

Permalink
Add link to issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Sep 23, 2018
1 parent f305fc5 commit 5d66968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdownSyntaxHighlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = function(str, language) {
(highlights.isHighlightedAdd(j) ? " highlight-line-add" : "") +
(highlights.isHighlightedRemove(j) ? " highlight-line-remove" : "") +
"\">" +
(line || '\n') +
(line || '\n') + // https://github.com/11ty/eleventy-plugin-syntaxhighlight/pull/5
"</div>";
});

Expand Down

0 comments on commit 5d66968

Please sign in to comment.