Skip to content

Commit

Permalink
Merge pull request #14878 from ahocevar/marked-warning
Browse files Browse the repository at this point in the history
Remove marked warning
  • Loading branch information
ahocevar committed Jul 10, 2023
2 parents da48280 + 4e1ffd6 commit 7099f14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/webpack/example-builder.js
Expand Up @@ -29,7 +29,8 @@ function getPackageInfo() {

handlebars.registerHelper(
'md',
(str) => new handlebars.SafeString(marked(str))
(str) =>
new handlebars.SafeString(marked(str, {headerIds: false, mangle: false}))
);

/**
Expand Down

0 comments on commit 7099f14

Please sign in to comment.