Update dependency marked to v11 (#2898)

This commit is contained in:
renovate[bot]
2023-12-02 14:33:51 +01:00
committed by GitHub
parent d51468c60c
commit de5855b706
3 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@
"@types/node": "^20.0.0",
"axios": "^1.6.0",
"concurrently": "^8.0.0",
"marked": "^10.0.0",
"marked": "^11.0.0",
"tslib": "^2.6.1",
"typescript": "^5.0.0"
},

View File

@@ -23,5 +23,5 @@ export function getContent(data: string): string {
if (!content) {
throw new Error("Can't get the content");
}
return marked(content);
return marked(content) as string;
}