You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since angular is version 12, ngx-markdown corresponding to version 12 was used and found to be inaccurate in code recognition.
I use it to recognize and render streaming data from the back end, but sometimes it only recognizes part of the code, resulting in some areas being highlighted.
constructor(private markdownService: MarkdownService) {}
private setupCustomRenderer() {
//code
this.markdownService.renderer.code = (code: string, language: string) => {
console.log('code', code, language);//The identified code is found to be incomplete
};
}
It seems that the NGX-Markdown 14 version does not have this problem, may I ask if there is any patch pack that can temporarily solve it (because the angular version limits me to use a higher version of markdown for the time being)?
The text was updated successfully, but these errors were encountered:
Since angular is version 12, ngx-markdown corresponding to version 12 was used and found to be inaccurate in code recognition.
I use it to recognize and render streaming data from the back end, but sometimes it only recognizes part of the code, resulting in some areas being highlighted.
It seems that the NGX-Markdown 14 version does not have this problem, may I ask if there is any patch pack that can temporarily solve it (because the angular version limits me to use a higher version of markdown for the time being)?
The text was updated successfully, but these errors were encountered: