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:
parent
fd00c5f698
commit
4044528230
@ -171,7 +171,7 @@ void outputAttribute(std::ostream & out, const std::string & s)
|
|||||||
case '>':
|
case '>':
|
||||||
out << ">";
|
out << ">";
|
||||||
break;
|
break;
|
||||||
case '`': // for IE
|
case '`': // for IE: http://html5sec.org/#59
|
||||||
out << "`";
|
out << "`";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user