New Features
Bug Fixes
Breaking Changes
Details
Add support for GitHub Flavored Markdown "Task list items"
Breaking Change: This change introduces a new base class for list items (MdListItemBase) and changes both MdBulletList and MdOrderedList to use the base type instead of 'MdListItem'. This is a binary breaking change and requires recompilation of code consuming the library.
Add support for GitHub Flavored Markdown's task list items.
Task lists can be created by adding instances of MdTaskListItem instead of instances of MdListItem to either MdBulletList or MdOrderedLists.
Note that task lists might not be supported by all Markdown implementations.
Fix serialization of blank lines in code blocks
Blank lines in the content of MdCodeBlock block were being omitted when saving Markdown.
- See Also: ap0llo/mddocs#245
- Pull Request: #201
- Commit:
2b9ffed