Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
grassedge committed Feb 5, 2020
1 parent dca5b41 commit 734d54c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32571,7 +32571,7 @@ exports.retrieveCodes = retrieveCodes;
const infoRegexp = /^plantuml(?:@(.+))?:([\w-_.]+)/;
function puFromMd(markdown) {
const md = new markdownit();
const fences = md.parse(markdown)
const fences = md.parse(markdown, {})
.filter(token => token.type === 'fence')
.filter(token => infoRegexp.test(token.info));
return fences.reduce((accum, fence) => {
Expand Down

0 comments on commit 734d54c

Please sign in to comment.