UNPKG

typographie

Version:

Library for preparation of russian texts to web publication

10 lines (8 loc) 253 B
var typographie = new Typographie(); window.onload = function () { var input = document.getElementById('input'); var output = document.getElementById('output'); input.onkeyup = function () { output.value = typographie.process(input.value); }; };