1
1
// 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.
3
3
// See the license.txt file in the project root for more information.
4
4
5
5
using Markdig . Parsers ;
@@ -13,8 +13,6 @@ namespace Markdig.Renderers.Html;
13
13
/// <seealso cref="HtmlObjectRenderer{CodeBlock}" />
14
14
public class CodeBlockRenderer : HtmlObjectRenderer < CodeBlock >
15
15
{
16
- private HashSet < string > ? _blocksAsDiv ;
17
-
18
16
/// <summary>
19
17
/// Initializes a new instance of the <see cref="CodeBlockRenderer"/> class.
20
18
/// </summary>
@@ -25,23 +23,32 @@ public CodeBlockRenderer() { }
25
23
/// <summary>
26
24
/// Gets a map of fenced code block infos that should be rendered as div blocks instead of pre/code blocks.
27
25
/// </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 ) ;
29
33
30
34
protected override void Write ( HtmlRenderer renderer , CodeBlock obj )
31
35
{
32
36
renderer . EnsureLine ( ) ;
33
37
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 ) ) )
35
39
{
36
40
var infoPrefix = ( obj . Parser as FencedCodeBlockParser ) ? . InfoPrefix ??
37
41
FencedCodeBlockParser . DefaultInfoPrefix ;
38
42
43
+ var htmlBlock = BlockMapping . TryGetValue ( info , out var blockType ) ? blockType : "div" ;
44
+
39
45
// We are replacing the HTML attribute `language-mylang` by `mylang` only for a div block
40
46
// NOTE that we are allocating a closure here
41
47
42
48
if ( renderer . EnableHtmlForBlock )
43
49
{
44
- renderer . Write ( "<div" )
50
+ renderer . WriteRaw ( '<' ) ;
51
+ renderer . Write ( htmlBlock )
45
52
. WriteAttributes ( obj . TryGetAttributes ( ) ,
46
53
cls => cls . StartsWith ( infoPrefix , StringComparison . Ordinal ) ? cls . Substring ( infoPrefix . Length ) : cls )
47
54
. WriteRaw ( '>' ) ;
@@ -51,7 +58,7 @@ protected override void Write(HtmlRenderer renderer, CodeBlock obj)
51
58
52
59
if ( renderer . EnableHtmlForBlock )
53
60
{
54
- renderer . WriteLine ( "</div >" ) ;
61
+ renderer . Write ( "</" ) . Write ( htmlBlock ) . WriteLine ( " >") ;
55
62
}
56
63
}
57
64
else
0 commit comments