/jquery-typograf

Типографирование на лету

Primary LanguageHTMLOtherNOASSERTION

Типографирование на лету

Позволяет типографировать текст при вводе в текстовое поле.

Использование с jQuery

<script src="./node_modules/typograf/dist/typograf.js"></script>
<script src="./jquery.autotypograf.js"></script>
...
<input type="text" val=""/>
<script>
    $('input').autotypograf({locale: ['ru', 'en-US']});
</script>

Использование без jQuery

<script src="./node_modules/typograf/dist/typograf.js"></script>
<script src="./autotypograf.vanilla.js"></script>
...
<input type="text" val="" id="text" />
<script>
    autotypograf(document.getElementById('text'), {locale: ['ru', 'en-US']});
</script>

MIT License