Dmitry Shechtman
Dmitry Shechtman
Perhaps backport https://github.com/drewnoakes/metadata-extractor-dotnet/pull/205?
So `BlockTag` will have something like ``` [Obsolete] AtxHeader, AtxHeading = AtxHeader, ``` etc. Not very pretty IMHO, but will do. Re: struct I agree that it adds no value,...
I couldn't resist jumping on the opportunity with two renaming suggestions of my own: 1. [Weak emphasis](http://talk.commonmark.org/t/weak-vs-strong-emphasis/1943) 2. [Unordered list](http://talk.commonmark.org/t/ordered-vs-unordered-list/1945) I updated the top post with these and turned it...
I guess the struct is a matter of personal taste. I renamed both headers and rulers in the extensions branch (leaving `HeaderLevel` untouched for now). I figured changes like these...
Unlike with _weak emphasis_, which might be changed as proposed, changed to something unthinkable, or remain unchanged, I feel that _unordered lists_ is the only correct term for what the...
I started documenting the API changes [here](https://github.com/AMDL/CommonMark.NET/wiki/API-Changes). As you may see, I ultimately moved `HeaderLevel` into `Heading.Level`. I also moved `DelimiterCharacter` into `Emphasis.DelimiterCharacter` (but didn't document it since that's not...
Extensively :smile: Lists are actually extensibility taken to the extreme. Adding a new list style is as easy as: ``` C# public class FullWidthLowerAlphaLists : CommonMarkExtension { protected override IEnumerable...
[CommonMark 0.23](http://talk.commonmark.org/t/ann-commonmark-0-23/1948) has been released. May I suggest that the same changes be applied before 0.11 (if you're planning on releasing one), i.e. 1. `HeaderLevel` obsoleted by `HeadingData` struct with...
I'm currently working on disallowing space between link text and link label. ``` Test Name: Example541 Test Outcome: Failed Result Message: Assert.AreEqual failed. Expected:. Actual:. Result StandardOutput: Example 541 Section:...
Maybe my branch diverged too much from knagis/master, but that doesn't seem to solve the issue with this specific example.