thephpleague / html-to-markdown

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

Escape square brackets #127

Closed manuelisimo closed 7 years ago

manuelisimo commented 7 years ago

Escapes the characters '[' and ']' on text elements so that

<p>test[test]</p>

gets converted to

test\[test\]
colinodell commented 7 years ago

Thanks for the fix!