Created
August 6, 2013 09:34
-
-
Save nDmitry/6163120 to your computer and use it in GitHub Desktop.
Russian or english quotes depending on `lang` attribute
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Russian or english quotes depending on `lang` attribute | |
| */ | |
| p:lang(en) q { | |
| quotes: "\201C" "\201D" "\2018" "\2019"; | |
| } | |
| p:lang(ru) q { | |
| quotes: "\00AB" "\00BB" "\201E" "\201C"; | |
| } | |
| body { | |
| padding: 2em 4em; | |
| font-size: 22px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p lang="en">Luke continued, <q>And then she called him a <q>scruffy-looking nerf-herder</q>! I think I’ve got a chance!</q> The poor naive fool…</p> | |
| <p lang="ru">Пушкин писал Дельвигу: <q>Жду <q>Цыганов</q> и тотчас тисну</q>.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment