Skip to content

Minimalistic and customizable markdown editor for Yii2

License

Notifications You must be signed in to change notification settings

s1lver/yii2-markdown-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-markdown-it

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