Skip to content

Instantly share code, notes, and snippets.

@nDmitry
Created August 6, 2013 09:34
Show Gist options
  • Select an option

  • Save nDmitry/6163120 to your computer and use it in GitHub Desktop.

Select an option

Save nDmitry/6163120 to your computer and use it in GitHub Desktop.
Russian or english quotes depending on `lang` attribute
/**
* 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;
}
<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>
// alert('Hello world!');
{"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