mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-13 21:42:57 +00:00
TextMatchHelper was removed — what's upgrade path? #275
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 @leotsarev on GitHub (Feb 26, 2019).
TextMatchHelper was removed in #305 by @MihaZupan
It was useful for my private extension https://github.com/joinrpg/joinrpg-net/blob/master/Joinrpg.Markdown/LinkerParser.cs
new CompactPrefixTree is internal api, and I couldn't use it and benefit from wonderful optimizations.
Could you please make it public and/or introduce another public surface for the use case?
For now, I just copied TextMatchHelper into my code.
@xoofx commented on GitHub (Feb 26, 2019):
Yes, it was not meant originally to be public but forgot to remove it. There are a couple of API that will be removed from the surface API (from the Helpers namespace for instance)
If you are looking for this API, I suggest you to use directly https://github.com/MihaZupan/SharpCollections from @MihaZupan
@leotsarev commented on GitHub (Feb 26, 2019):
From my point of view, it was nice convenience api from extensions :-(
But I'll live with that decision