s1lver/yii2-markdown-it

There is no license information available for the latest version (1.0.1) of this package.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

1.0.1 2021-11-30 17:33 UTC

This package is auto-updated.

Last update: 2024-12-20 14:26:21 UTC


README

Minimalistic and customizable markdown editor for Yii2.

Install

composer require s1lver/yii2-markdown-it

Example

<?= 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' => '-->'],
        ]
    ]
]) ?>

Required