Skip to content

Commit

Permalink
Merge pull request #5554 from processing/dependabot/npm_and_yarn/mark…
Browse files Browse the repository at this point in the history
…ed-4.0.10

Bump marked from 0.7.0 to 4.0.10
  • Loading branch information
limzykenneth authored Feb 19, 2022
2 parents 8a3126f + 031ff86 commit 6f4128a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/preprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ function buildParamDocs(docs) {
function renderItemDescriptionsAsMarkdown(item) {
if (item.description) {
const entities = new Entities();
item.description = entities.decode(marked(item.description));
item.description = entities.decode(marked.parse(item.description));
}
if (item.params) {
item.params.forEach(renderItemDescriptionsAsMarkdown);
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"i18next-browser-languagedetector": "^4.0.1",
"libtess": "^1.2.2",
"lint-staged": "^4.3.0",
"marked": "^0.7.0",
"marked": "^4.0.10",
"mocha": "^6.2.2",
"np": "^5.2.1",
"omggif": "^1.0.10",
Expand Down

0 comments on commit 6f4128a

Please sign in to comment.