universalcore / springboard

Bootstrap Universal Core applications easily
http://springboard.readthedocs.org/
BSD 2-Clause "Simplified" License
1 stars 2 forks source link

Don't escape markdown filter's markup #33

Closed Rizziepit closed 9 years ago

Rizziepit commented 9 years ago

pyramid_jinja2 turns autoescaping on. So the markdown filter needs to return a safe string.

Rizziepit commented 9 years ago

@miltontony @smn ready for review. This is a super small one.

miltontony commented 9 years ago

:+1: strange. not sure I fully understand why this wasn't working.

Rizziepit commented 9 years ago

@miltontony because of autoescaping, html entities are escaped and show up in the page text. pyramid_chameleon's autoescaping isn't turned on by default like pyramid_jinja2. Hope that clarifies?