Skip to content

Commit f0c6642

Browse files
committed
bug fixed
Fix parse two markdown document use same MarkdownPipelineBuilder, if just one has [toc], it will has both headings from two document.
1 parent 6802507 commit f0c6642

7 files changed

+57
-19
lines changed

MarkdigToc.sln

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{25A1C149
88
.editorconfig = .editorconfig
99
.gitattributes = .gitattributes
1010
.gitignore = .gitignore
11+
changelog.md = changelog.md
1112
global.json = global.json
1213
License = License
1314
Readme.md = Readme.md

Readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MarkdigToc [![NuGet](https://img.shields.io/nuget/v/Leisn.MarkdigToc)](https://www.nuget.org/packages/Leisn.MarkdigToc/)
22

3-
MarkdigToc is a extension for [Markdig](https://github.com/xoofx/markdig) to generate table of content by parse [toc] in markdown content.
3+
MarkdigToc is a extension for [Markdig](https://github.com/xoofx/markdig) to generate table of content by parse [toc] in markdown document.
44

55
> Currently just for render to html.
66
@@ -123,11 +123,11 @@ Code copied from `AutoIdentifierExtension`, then added some code and options.
123123

124124
#### TOC Title
125125

126-
> NOTICE: I also parse toc title and use it's attributes from markdown content , but that is not a regular *syntax*, you should know that.
126+
> NOTICE: I also parse toc title and use it's attributes from markdown document , but that is not a regular *syntax*, you should know that.
127127

128128
* `OverrideTitle`: `string? : default null`
129129

130-
Override toc title , ignore defined in markdown content.
130+
Override toc title , ignore defined in markdown document.
131131

132132
* `TitleTag`: `string : default p`
133133

@@ -159,7 +159,7 @@ Code copied from `AutoIdentifierExtension`, then added some code and options.
159159

160160
## Others
161161

162-
Markdown content:
162+
Markdown document:
163163

164164
```markdown
165165
[TOC]

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
### 0.1.3
2+
------
3+
4+
* Fix parse two markdown document use same `MarkdownPipelineBuilder` , one document without `[toc]` and the other one has, the generated toc block will contains both. This bug is occur case I use the `TocOptions.Headings` to store the headings, and don't clear them when all renderer completed, not just clear after toc rendered.
5+
* After fixed, markdown document can has more than one `[toc]` , and all of these can be rendered, though it's useless.
6+

src/HtmlTocRenderer.cs

-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ protected override void Write(HtmlRenderer renderer, TocBlock obj)
6565
renderer.Write($"</{Options.ContainerTag}>");
6666
}
6767
renderer.EnsureLine();
68-
69-
//once randerered clear the tree
70-
Options.Headings.Clear();
7168
}
7269

7370
void WriteTitle(HtmlRenderer renderer, TocBlock obj)

src/MarkdigToc.csproj

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
@@ -10,15 +10,19 @@
1010

1111
<PropertyGroup>
1212
<PackageId>Leisn.MarkdigToc</PackageId>
13-
<VersionPrefix>0.1.2</VersionPrefix>
13+
<Version>0.1.3</Version>
1414
<Authors>leisn</Authors>
1515
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
1616
<PackageTags>Markdown toc Markdig md md2html</PackageTags>
17-
<Description>A extension for Markdig to generate table of content by parse [toc] in markdown content.</Description>
17+
<Description>A extension for Markdig to generate table of content by parse [toc] in markdown document.</Description>
1818
<PackageReadmeFile>Readme.md</PackageReadmeFile>
1919
<PackageIcon>icon.png</PackageIcon>
20-
<Copyright>Leisn</Copyright>
20+
<Copyright>Copyright (c) Leisn 2021</Copyright>
2121
<PackageProjectUrl>https://github.com/leisn/MarkdigToc</PackageProjectUrl>
22+
<PackageReleaseNotes> v0.1.3:
23+
1. Fix parse two markdown document use same `MarkdownPipelineBuilder` , one document without `[toc]` and the other one has, the generated toc block will contains both.
24+
2. After fixed, markdown document can has more than one `[toc]` , and all of these can be rendered, though it's useless.
25+
</PackageReleaseNotes>
2226
</PropertyGroup>
2327

2428
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">

src/TocExtension.cs

+34-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
using Markdig;
22
using Markdig.Renderers;
33
using Markdig.Renderers.Html;
4+
using Markdig.Syntax;
45

56
using System;
7+
using System.Linq;
68

79
namespace Leisn.MarkdigToc
810
{
@@ -28,22 +30,49 @@ public TocExtension(TocOptions options)
2830
//register parsers
2931
public void Setup(MarkdownPipelineBuilder pipeline)
3032
{
31-
var cidE = pipeline.Extensions.Find<CustomAutoIdExtension>();
32-
if (cidE == null)
33+
var autoIdExtension = pipeline.Extensions.Find<CustomAutoIdExtension>();
34+
if (autoIdExtension == null)
3335
throw new InvalidOperationException("CustomAutoIdExtension is null");
34-
cidE.OnHeadingParsed += (heading) => Options.AddHeading(heading);
36+
autoIdExtension.OnHeadingParsed -= AutoIdExtension_OnHeadingParsed;
37+
autoIdExtension.OnHeadingParsed += AutoIdExtension_OnHeadingParsed;
3538
pipeline.BlockParsers.AddIfNotAlready(new TocBlockParser(Options));
39+
40+
//clear headings after all rendered, not here
41+
//pipeline.DocumentProcessed -= Pipeline_DocumentProcessed;
42+
//pipeline.DocumentProcessed += Pipeline_DocumentProcessed;
3643
}
3744

38-
//register randerers
45+
//private void Pipeline_DocumentProcessed(MarkdownDocument document)
46+
//{
47+
// //if there is no [toc] in markdown document, clear the headings.
48+
// var tocBlocks = document.Where(block => block is TocBlock).ToList();
49+
// if (tocBlocks == null || tocBlocks.Count < 1)
50+
// Options.Headings.Clear();
51+
//}
52+
53+
private void AutoIdExtension_OnHeadingParsed(HeadingInfo heading)
54+
=> Options.AddHeading(heading);
55+
56+
//register randerers, this method will execute after all parsers completed.
3957
public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer)
4058
{
4159
if (renderer is HtmlRenderer htmlRenderer)
4260
{
4361
//because TocBlock:HeadingBlock ,so renderer must before HeadingRenderer
44-
htmlRenderer.ObjectRenderers.InsertBefore<HeadingRenderer>(new HtmlTocRenderer(Options));
62+
if (!htmlRenderer.ObjectRenderers.Contains<HtmlTocRenderer>())
63+
htmlRenderer.ObjectRenderers.InsertBefore<HeadingRenderer>(new HtmlTocRenderer(Options));
4564
}
65+
66+
renderer.ObjectWriteAfter += Renderer_ObjectWriteAfter;
4667
}
4768

69+
private void Renderer_ObjectWriteAfter(IMarkdownRenderer arg1, MarkdownObject arg2)
70+
{
71+
//move HtmlTocRenderer -> Write -> 'Options.Headings.Clear()' to here
72+
//now it can be more than one [toc] in markdown document , and all of these can be rendered
73+
//though it's useless
74+
if (arg2 is MarkdownDocument)// when the document all writed
75+
Options.Headings.Clear();
76+
}
4877
}
4978
}

src/TocOptions.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public TocOptions()
6363
public string TocTag { get; set; } = "nav";
6464
/// <summary>
6565
/// Class names for toc element.<br/>
66-
/// Notice: If also defined in markdown content , this will be auto add without repeating.<br/>
66+
/// Notice: If also defined in markdown document , this will be auto add without repeating.<br/>
6767
/// e.g.<br/>
6868
/// <code>[toc] {.tocClass1.tocClass2}</code>
6969
/// <code>TocClass="toc tocClass1";</code>
@@ -73,7 +73,7 @@ public TocOptions()
7373
public string? TocClass { get; set; }
7474
/// <summary>
7575
/// Id for toc element.<br/>
76-
/// Notice: If defined in markdown content , this will be <strong>ignored</strong>.<br/>
76+
/// Notice: If defined in markdown document , this will be <strong>ignored</strong>.<br/>
7777
/// e.g.<br/>
7878
/// <code>[toc] {#tocId}</code>
7979
/// <code>TocId="tocId";</code>
@@ -124,6 +124,7 @@ public TocOptions()
124124
#endregion
125125

126126
internal void AddHeading(HeadingInfo info)
127-
=> Headings.Append(HeadingInfos.FromHeading(info));
127+
=> Headings.Append(HeadingInfos.FromHeading(info));
128+
128129
}
129130
}

0 commit comments

Comments
 (0)