Escape unicode characters

Fixes #2905
This commit is contained in:
Pat Hawks 2014-09-10 12:28:45 -07:00
parent 671b435b3b
commit 960a918330
1 changed files with 6 additions and 6 deletions

View File

@ -525,12 +525,12 @@ aside li.current a:before {
} }
.section-nav .next:after { .section-nav .next:after {
content: ""; content: '\203A';
right: 10px; right: 10px;
} }
.section-nav .prev:before { .section-nav .prev:before {
content: ""; content: '\2039';
left: 10px; left: 10px;
} }
@ -991,7 +991,7 @@ code.option, code.flag, code.filter, code.output {
} }
.note:after { .note:after {
content: ""; content: '\2605';
color: #fc0; color: #fc0;
position: absolute; position: absolute;
top: 14px; top: 14px;
@ -1002,7 +1002,7 @@ code.option, code.flag, code.filter, code.output {
} }
.info:after { .info:after {
content: ""; content: '\24D8';
color: #fff; color: #fff;
position: absolute; position: absolute;
top: 15px; top: 15px;
@ -1013,7 +1013,7 @@ code.option, code.flag, code.filter, code.output {
} }
.warning:after { .warning:after {
content: ""; content: '\203C';
color: #fc0; color: #fc0;
position: absolute; position: absolute;
top: 15px; top: 15px;
@ -1024,7 +1024,7 @@ code.option, code.flag, code.filter, code.output {
} }
.unreleased:after { .unreleased:after {
content: ""; content: '\2692';
color: #2b2a12; color: #2b2a12;
position: absolute; position: absolute;
top: 8px; top: 8px;