mrssoft / yii2-mdash
E. Muravjov 的 Yii2 字体排印器
1.0.3
2019-09-23 09:12 UTC
Requires
- yiisoft/yii2: >=2.0.13
This package is auto-updated.
Last update: 2024-09-23 20:14:12 UTC
README
E. Muravjov 的 Yii2 字体排印器
安装
安装此扩展的首选方法是通过 Composer。
运行以下命令之一
php composer.phar require --prefer-dist mrssoft/yii2-mdash "*"
或将以下内容添加到您的 composer.json
文件的 require 部分中。
"mrssoft/yii2-mdash": "*"
用法
配置
'components' => [ ... 'mdash' => [ 'class' => 'mrssoft\mdash\Mdash', 'remote' => true, // Use remote API or local. Default false. 'options' => [ // Typograph options. See http://mdash.ru/rules.html 'Text.paragraphs' => 'off', 'Text.breakline' => 'off', 'OptAlign.all' => 'off', 'Etc.unicode_convert' => 'off', 'Nobr.spaces_nobr_in_surname_abbr' => 'off', 'Etc.split_number_to_triads' => 'off' ] ] .... ]
用法
$mdash = new Mdash([ 'remote' => false, 'options' => [ 'Text.paragraphs' => 'off', ] ]); echo $mdash->process("мой текст");
作为过滤器使用
public function rules() { return [ ['text', '\mrssoft\mdash\MdashFilter', 'options' => ['remove' => false] ], ] }