reversemarkdown-net
reversemarkdown-net copied to clipboard
ReverseMarkdown.Net is a Html to Markdown converter library in C#. Conversion is very reliable since HtmlAgilityPack (HAP) library is used for traversing the Html DOM
Bumps [Verify.Xunit](https://github.com/VerifyTests/Verify) from 22.11.1 to 23.6.0. Commits fa5103f dont ignore json refs (#1170) 9f8743c docs 964c604 StringSyntaxAttribute (#1168) 2e03b95 refs or cleanup dfa6bce refs or cleanup cbb46af refs or cleanup...
Bumps [HtmlAgilityPack](https://github.com/zzzprojects/html-agility-pack) from 1.11.57 to 1.11.60. Release notes Sourced from HtmlAgilityPack's releases. v1.11.60 Download the library here FIXED: Performance optimization with Avoid creating new strings when parsing PcData #541 FIXED:...
## Changes + Added additional constructor with parameter (`param Assembly[] additionalAssemblies`) to the `Converter` constructor with support for custom converters and converters that inherit from existing converters. + Changed all...
There are many HTML tags such as `p`, `span`, `div`, ...etc. reserved unnecessary spaces that will lead to generate wrong Markdown document. Here is my code snippet: ```cs void Main()...
Question about blank line handling in ReverseMarkdown: I have a process that converts from Markdown to HTML and back again, depending on various conditions. One user would like to create...
The library implementation today relies on dynamic reflection and is therefore unsafe for trimming and NativeAOT publishing. There are currently 3 problems that need to be addressed to make the...
While converting an input Html string to a markup string is nice, it would be even better if it could also generate a mapping from each markdown elements to it's...
Package version: 4.7.0 Input: `[a-z]([0-9]){0,4}` Expected: `\[a-z\]\(\[0-9\]\)\{0,4\}` (or perhaps more minimal if escaping is context aware) Actual: `[a-z]([0-9]){0,4}` I ran into this because I have some regex in HTML plain...
here. it doesnt work.. html to md.. all the crucial info is letf as html tags. **input html file:** https://omniheroesgame.fandom.com/wiki/Athena **output file:** [Athena.md](https://github.com/user-attachments/files/19657791/Athena.md) **sneak peek:: at Athena.md** ```` Start a...
I'm going to convert the following HTML to markdown ,my code is as following: `static void Main(string[] args) { var html = "What we thought: When we built Pages, we assumed...