mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-08 13:54:54 +00:00
Excuse me,How can I make the Heading Auto Identifiers support Chinese #424
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @yaolunmao on GitHub (Jan 9, 2021).
Now:
## 测试ToHtml:
<h1 id="section"></h1>I hope:
<h1 id="测试"></h1>@yaolunmao commented on GitHub (Jan 9, 2021):
sorry! I got it!
Because I wrote
.UseAutoIdentifiers(AutoIdentifierOptions.None)after.UseAdvancedExtensions()I changed it to
new MarkdownPipelineBuilder().UseAutoIdentifiers(AutoIdentifierOptions.None).UseAdvancedExtensions().Build();The problem is solved