Skip to content

Instantly share code, notes, and snippets.

@hcodes
Last active April 13, 2017 08:24
Show Gist options
  • Save hcodes/6846135c46f7353aa54996d271491279 to your computer and use it in GitHub Desktop.
Save hcodes/6846135c46f7353aa54996d271491279 to your computer and use it in GitHub Desktop.
<script src="./jquery.js"></script>
<script src="./typograf.js"></script>
<script>
var tp = new Typograf({locale: ['ru', 'en-US']});
$(document).ready(function() {
$('p').each(function() {
var elem = $(this);
elem.html(tp.execute(elem.html()));
})
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment