We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f15b0f + 9d6ce2c commit fbf217fCopy full SHA for fbf217f
client/src/providers/previewNodeGraphProvider.ts
@@ -76,6 +76,9 @@ export class PuppetNodeGraphContentProvider implements vscode.TextDocumentConten
76
label = ""`
77
78
var graphContent = compileResult.dotContent;
79
+ // vis.jz sees backslashes as escape characters, however they are not in the DOT language. Instead
80
+ // we should escape any backslash coming from a valid DOT file in preparation to be rendered
81
+ graphContent = graphContent.replace(/\\/g,"\\\\");
82
graphContent = graphContent.replace(`label = "vscode"`,styling);
83
84
svgContent = viz(graphContent,"svg");
0 commit comments