mfontanini / presenterm

A markdown terminal slideshow tool
https://mfontanini.github.io/presenterm/
BSD 2-Clause "Simplified" License
1.33k stars 32 forks source link

Unescape escaped symbols in block quotes #195

Closed mfontanini closed 9 months ago

mfontanini commented 9 months ago

The content of block quotes is turned back into commonmark via comrak, but it seems as part of that symbols that have a meaning in markdown (e.g. ! or [) are escaped. This fixes that by unescaping them back into their original form.

Fixes #194