Notebooks: Fix relative images not rendering on PC for Markdown Cells (#8091)

* Fix relative images on notebook markdown pc

* PR feedback around replace ordering
This commit is contained in:
Chris LaFreniere
2019-10-29 19:48:57 -07:00
committed by GitHub
parent ab736466cd
commit 62af81e88c

View File

@@ -203,7 +203,7 @@ export class NotebookMarkdownRenderer {
href = this.resolveUrl(base, href);
}
try {
href = encodeURI(href).replace(/%25/g, '%');
href = encodeURI(href).replace(/%5C/g, '\\').replace(/%25/g, '%');
} catch (e) {
return null;
}