silver/yii2-markdown-it

此包的最新版本(1.0.1)没有可用的许可信息。

安装: 1

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

语言:JavaScript

类型:yii2-extension

1.0.1 2021-11-30 17:33 UTC

This package is auto-updated.

Last update: 2024-09-20 14:04:37 UTC


README

适用于 Yii2 的简约且可定制的 Markdown 编辑器。

安装

composer require s1lver/yii2-markdown-it

示例

<?= MarkdownIt::widget([
    'name' => 'test',
    'buttons' => [
        [
            'label' => '',
            'options' => ['class' => 'btn btn-outline-primary fa fa-bold',],
            'buttonActions' => ['before' => '**', 'after' => '**'],
        ],
        [
            'label' => '',
            'options' => ['class' => 'btn btn-outline-primary fa fa-arrows-h',],
            'buttonActions' => ['before' => '<--', 'after' => '-->'],
        ]
    ]
]) ?>

必需