Open jgkim opened 9 years ago
We should replace quotes to "normal" quotes and let markdown automatically handle them.
Even if I replaced all the quotation marks into their plain forms (https://github.com/okfn/opendatahandbook/issues/200), some pages still have HTML special characters such as &
, and it could be problematic to automatically replace them with their HTML entities (e.g., &
).
Why do you think it would be problematic?
@rgrp Since all the HTML entities start with &
, it's impossible to simply find & replace every occurrence of &
to &
.
I can find some HTML special characters, such as “, ”, ‘, and ’, in the content.
We should replace them with their corresponding HTML entities (e.g.
“
,”
,‘
, and’
), or for curly quotation marks, we can just use plain quotation marks and let Markdown automatically handle them.