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.
1 parent 618e71b commit f35a47aCopy full SHA for f35a47a
src/Docfx.MarkdigEngine.Extensions/PlantUml/PlantUmlExtension.cs
@@ -18,7 +18,7 @@ public class PlantUmlOptions
18
19
[JsonProperty("remoteUrl")]
20
[JsonPropertyName("remoteUrl")]
21
- public string RemoteUrl { get; set; }
+ public string RemoteUrl { get; set; } = "http://www.plantuml.com/plantuml/";
22
23
[JsonProperty("localPlantUmlPath")]
24
[JsonPropertyName("localPlantUmlPath")]
@@ -30,7 +30,7 @@ public class PlantUmlOptions
30
31
[JsonProperty("renderingMode")]
32
[JsonPropertyName("renderingMode")]
33
- public RenderingMode RenderingMode { get; set; }
+ public RenderingMode RenderingMode { get; set; } = RenderingMode.Remote;
34
35
[JsonProperty("delimitor")]
36
[JsonPropertyName("delimitor")]
0 commit comments