David-Rushton / morello.markdown

A .NET library that pretty prints markdown in the console
MIT License
2 stars 0 forks source link

Inline and block html not supported #29

Open David-Rushton opened 2 years ago

David-Rushton commented 2 years ago

Reproduction throws two exception.

# Throws: 
#  - Could not process type: Markdig.Syntax.Inlines.HtmlInline
#   - Block type not supported: Markdig.Syntax.HtmlBlock
❯ "<table><tr><td>
>> <pre>
>> **Hello**,
>>
>> _world_.
>> </pre>
>> </td></tr></table>" | md-cli

Spec

David-Rushton commented 2 years ago

After #39 we now fallback to plain text. For some reason we miss the final character.

AC:

image