thephpleague / html-to-markdown

Convert HTML to Markdown with PHP
MIT License
1.77k stars 205 forks source link

List-like lines inside list item should be escaped #158

Closed Sylry closed 6 years ago

Sylry commented 6 years ago

Example:

<ul><li>Foo<br>- Bar</li></ul>

produces:

- Foo  
  - Bar

insteadof:

- Foo  
  \- Bar

PR will follow

colinodell commented 6 years ago

Fixed via #159