mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Question: How to parse OneNote Links #632
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 @Moser-Michael on GitHub (Oct 12, 2023).
Hi,
im am trying to figure out what the correct options are to get a working OneNote link.
The problem is the german special character 'ä' which gets converted to '%C3%A4' which breaks the link functionality.
https://de.wikipedia.org/wiki/Hilfe:Sonderzeichenreferenz
Any suggestions?
Thanks, Michael
string message = @"Some Text before Link: [One Notebook.one\Drucker ändern](onenote:///C:\temp\Sources\One%20Notebook.one#Drucker%20ändern§ion-id={F1B85E57-A193-4831-B1DE-3A0E4D2B18A9}&end)"; var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); var result = Markdown.ToHtml(message, pipeline);