Skip to content

Commit f734e91

Browse files
authored
Merge pull request #823 from xoofx/fix-mermaid
Update DiagramExtension.cs
2 parents 41bdb0f + 090e6d7 commit f734e91

File tree

5 files changed

+26
-18
lines changed

5 files changed

+26
-18
lines changed

src/Markdig.Tests/Specs/DiagramsSpecs.generated.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TestExtensionsMermaidDiagrams
1717
//
1818
// ## Mermaid diagrams
1919
//
20-
// Using a fenced code block with the `mermaid` language info will output a `<div class='mermaid'>` instead of a `pre/code` block:
20+
// Using a fenced code block with the `mermaid` language info will output a `<pre class='mermaid'>` block (which is the default for other code block):
2121
[Test]
2222
public void ExtensionsMermaidDiagrams_Example001()
2323
{
@@ -34,14 +34,14 @@ public void ExtensionsMermaidDiagrams_Example001()
3434
// ```
3535
//
3636
// Should be rendered as:
37-
// <div class="mermaid">graph TD;
37+
// <pre class="mermaid">graph TD;
3838
// A-->B;
3939
// A-->C;
4040
// B-->D;
4141
// C-->D;
42-
// </div>
42+
// </pre>
4343

44-
TestParser.TestSpec("```mermaid\ngraph TD;\n A-->B;\n A-->C;\n B-->D;\n C-->D;\n```", "<div class=\"mermaid\">graph TD;\n A-->B;\n A-->C;\n B-->D;\n C-->D;\n</div>", "diagrams|advanced", context: "Example 1\nSection Extensions / Mermaid diagrams\n");
44+
TestParser.TestSpec("```mermaid\ngraph TD;\n A-->B;\n A-->C;\n B-->D;\n C-->D;\n```", "<pre class=\"mermaid\">graph TD;\n A-->B;\n A-->C;\n B-->D;\n C-->D;\n</pre>", "diagrams|advanced", context: "Example 1\nSection Extensions / Mermaid diagrams\n");
4545
}
4646
}
4747

src/Markdig.Tests/Specs/DiagramsSpecs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Adds support for diagrams extension:
44

55
## Mermaid diagrams
66

7-
Using a fenced code block with the `mermaid` language info will output a `<div class='mermaid'>` instead of a `pre/code` block:
7+
Using a fenced code block with the `mermaid` language info will output a `<pre class='mermaid'>` block (which is the default for other code block):
88

99
```````````````````````````````` example
1010
```mermaid
@@ -15,12 +15,12 @@ graph TD;
1515
C-->D;
1616
```
1717
.
18-
<div class="mermaid">graph TD;
18+
<pre class="mermaid">graph TD;
1919
A-->B;
2020
A-->C;
2121
B-->D;
2222
C-->D;
23-
</div>
23+
</pre>
2424
````````````````````````````````
2525

2626
## nomnoml diagrams

src/Markdig/Extensions/Diagrams/DiagramExtension.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Alexandre Mutel. All rights reserved.
2-
// This file is licensed under the BSD-Clause 2 license.
2+
// This file is licensed under the BSD-Clause 2 license.
33
// See the license.txt file in the project root for more information.
44

55
using Markdig.Renderers;
@@ -22,9 +22,8 @@ public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer)
2222
if (renderer is HtmlRenderer htmlRenderer)
2323
{
2424
var codeRenderer = htmlRenderer.ObjectRenderers.FindExact<CodeBlockRenderer>()!;
25-
// TODO: Add other well known diagram languages
26-
codeRenderer.BlocksAsDiv.Add("mermaid");
25+
codeRenderer.BlockMapping["mermaid"] = "pre";
2726
codeRenderer.BlocksAsDiv.Add("nomnoml");
2827
}
2928
}
30-
}
29+
}

src/Markdig/Renderers/Html/CodeBlockRenderer.cs

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Alexandre Mutel. All rights reserved.
2-
// This file is licensed under the BSD-Clause 2 license.
2+
// This file is licensed under the BSD-Clause 2 license.
33
// See the license.txt file in the project root for more information.
44

55
using Markdig.Parsers;
@@ -13,8 +13,6 @@ namespace Markdig.Renderers.Html;
1313
/// <seealso cref="HtmlObjectRenderer{CodeBlock}" />
1414
public class CodeBlockRenderer : HtmlObjectRenderer<CodeBlock>
1515
{
16-
private HashSet<string>? _blocksAsDiv;
17-
1816
/// <summary>
1917
/// Initializes a new instance of the <see cref="CodeBlockRenderer"/> class.
2018
/// </summary>
@@ -25,23 +23,32 @@ public CodeBlockRenderer() { }
2523
/// <summary>
2624
/// Gets a map of fenced code block infos that should be rendered as div blocks instead of pre/code blocks.
2725
/// </summary>
28-
public HashSet<string> BlocksAsDiv => _blocksAsDiv ??= new HashSet<string>(StringComparer.OrdinalIgnoreCase);
26+
public HashSet<string> BlocksAsDiv { get; } = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
27+
28+
/// <summary>
29+
/// Gets a map of custom block mapping to render as custom blocks instead of pre/code blocks.
30+
/// For example defining {"mermaid", "pre"} will render a block with info `mermaid` as a `pre` block but without the code HTML element.
31+
/// </summary>
32+
public Dictionary<string, string> BlockMapping { get; } = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2933

3034
protected override void Write(HtmlRenderer renderer, CodeBlock obj)
3135
{
3236
renderer.EnsureLine();
3337

34-
if (_blocksAsDiv is not null && (obj as FencedCodeBlock)?.Info is string info && _blocksAsDiv.Contains(info))
38+
if ((obj as FencedCodeBlock)?.Info is string info && (BlocksAsDiv.Contains(info) || BlockMapping.ContainsKey(info)))
3539
{
3640
var infoPrefix = (obj.Parser as FencedCodeBlockParser)?.InfoPrefix ??
3741
FencedCodeBlockParser.DefaultInfoPrefix;
3842

43+
var htmlBlock = BlockMapping.TryGetValue(info, out var blockType) ? blockType : "div";
44+
3945
// We are replacing the HTML attribute `language-mylang` by `mylang` only for a div block
4046
// NOTE that we are allocating a closure here
4147

4248
if (renderer.EnableHtmlForBlock)
4349
{
44-
renderer.Write("<div")
50+
renderer.WriteRaw('<');
51+
renderer.Write(htmlBlock)
4552
.WriteAttributes(obj.TryGetAttributes(),
4653
cls => cls.StartsWith(infoPrefix, StringComparison.Ordinal) ? cls.Substring(infoPrefix.Length) : cls)
4754
.WriteRaw('>');
@@ -51,7 +58,7 @@ protected override void Write(HtmlRenderer renderer, CodeBlock obj)
5158

5259
if (renderer.EnableHtmlForBlock)
5360
{
54-
renderer.WriteLine("</div>");
61+
renderer.Write("</").Write(htmlBlock).WriteLine(">");
5562
}
5663
}
5764
else

src/markdig.sln.DotSettings

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
This file is licensed under the BSD-Clause 2 license. &#xD;
44
See the license.txt file in the project root for more information.</s:String>
55
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /&gt;</s:String>
6+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=4a98fdf6_002D7d98_002D4f5a_002Dafeb_002Dea44ad98c70c/@EntryIndexedValue">&lt;Policy&gt;&lt;Descriptor Staticness="Instance" AccessRightKinds="Private" Description="Instance fields (private)"&gt;&lt;ElementKinds&gt;&lt;Kind Name="FIELD" /&gt;&lt;Kind Name="READONLY_FIELD" /&gt;&lt;/ElementKinds&gt;&lt;/Descriptor&gt;&lt;Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /&gt;&lt;/Policy&gt;</s:String>
67
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EFeature_002EServices_002ECodeCleanup_002EFileHeader_002EFileHeaderSettingsMigrate/@EntryIndexedValue">True</s:Boolean>
8+
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EPredefinedNamingRulesToUserRulesUpgrade/@EntryIndexedValue">True</s:Boolean>
79
<s:String x:Key="/Default/Environment/UnitTesting/NUnitProvider/SetCurrentDirectoryTo/@EntryValue">TestFolder</s:String>
810
<s:Boolean x:Key="/Default/UserDictionary/Words/=Autolink/@EntryIndexedValue">True</s:Boolean>
911
<s:Boolean x:Key="/Default/UserDictionary/Words/=Inlines/@EntryIndexedValue">True</s:Boolean>

0 commit comments

Comments
 (0)