1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

added a link for escaping ` for ie

This commit is contained in:
Lu Wang 2013-10-18 15:47:16 +08:00
parent fd00c5f698
commit 4044528230

View File

@ -171,7 +171,7 @@ void outputAttribute(std::ostream & out, const std::string & s)
case '>':
out << "&gt;";
break;
case '`': // for IE
case '`': // for IE: http://html5sec.org/#59
out << "&#96;";
break;
default: