QingWei-Li / vue-markdown-loader

📇 Convert Markdown file to Vue2.0 component.
704 stars 161 forks source link

Usage of highlight.js triggers deprecation note #75

Open janwidmer opened 2 years ago

janwidmer commented 2 years ago

Hi There,

Thank for the cool plugin. When using it in the newest Version, I get a deprecation notice:

Deprecated as of 10.7.0. highlight(lang, code, ...args) has been deprecated.
Deprecated as of 10.7.0. Please use highlight(code, options) instead.

This get's caused by the line 27 in the file markdown-compiler.js:

return hljs.highlight(lang, str, true).value;

Is there a reason to use the old function signature of highlight js?