PHP code example of zoibana / typograph

1. Go to this page and download the library: Download zoibana/typograph library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

zoibana / typograph example snippets




use zoibana\Typograph;

$text = "initial text";

// Инициализируем типограф со стандартным набором правил
$typo = new Typograph();

// Задаем текст для обработки
$typo->setText($text);

// Получаем обработанный текст
$formattedText->apply());

// Получаем содержимое css-файла со всеми стилями, примененными к тексту
$cssStyles = $typo->getCssStyles();




use zoibana\Typograph;

$text = "initial text";

// Инициализируем типограф с собственным набором правил
$typo = new Typograph([
     CustomRuleGroup::class,
]);

// Задаем текст для обработки
$typo->setText($text);

// Получаем обработанный текст
$formattedText->apply());

// Получаем содержимое css-файла со всеми стилями, примененными к тексту
$cssStyles = $typo->getCssStyles();