mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-08-19 13:02:22 +02:00
escape quotes in css using unicode hex
This commit is contained in:
@@ -239,20 +239,20 @@ body {
|
||||
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
||||
}
|
||||
.reveal blockquote:before {
|
||||
content: '“';
|
||||
content: '\201C';
|
||||
}
|
||||
.reveal blockquote:after {
|
||||
content: '”';
|
||||
content: '\201D';
|
||||
}
|
||||
|
||||
.reveal q {
|
||||
font-style: italic;
|
||||
}
|
||||
.reveal q:before {
|
||||
content: '“';
|
||||
content: '\201C';
|
||||
}
|
||||
.reveal q:after {
|
||||
content: '”';
|
||||
content: '\201D';
|
||||
}
|
||||
|
||||
.reveal pre {
|
||||
|
Reference in New Issue
Block a user