yiier/yii2-editor.md

editor.md for Yii2

Installs: 1 044

Dependents: 2

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 1

Open Issues: 0

Type:yii2-extension

v0.3.0 2021-03-17 04:04 UTC

This package is auto-updated.

Last update: 2024-04-17 10:39:14 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

editor.md for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiier/yii2-editor.md "*"

or add

"yiier/yii2-editor.md": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?php

use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
use yiier\editor\EditorMdWidget;

?>
<?= $form->field($model, 'content')->widget(EditorMdWidget::className(), [
        'options'=>[// html attributes
            'id'=>'content'
        ],
        'clientOptions' => [
            'height' => '640',
            // 'previewTheme' => 'dark',
            // 'editorTheme' => 'pastel-on-dark',
            'markdown' => '',
            'codeFold' => true,
            'syncScrolling' => false,
            'saveHTMLToTextarea' => true,    // 保存 HTML 到 Textarea
            'searchReplace' => true,
            // 'watch' => false, // 关闭实时预览
            'htmlDecode' => 'style,script,iframe|on*',            // 开启 HTML 标签解析,为了安全性,默认不开启
            'toolbar ' => false,             //关闭工具栏
            'previewCodeHighlight' => false, // 关闭预览 HTML 的代码块高亮,默认开启
            'emoji' => true,
            'taskList' => true,
            'tocm           ' => true,         // Using [TOCM]
            'tex' => true,    // 开启科学公式TeX语言支持,默认关闭
            'flowChart' => true,             // 开启流程图支持,默认关闭
            'sequenceDiagram' => true,       // 开启时序/序列图支持,默认关闭,
            // 'dialogLockScreen' => false,   // 设置弹出层对话框不锁屏,全局通用,默认为true
            // 'dialogShowMask' => false,     // 设置弹出层对话框显示透明遮罩层,全局通用,默认为true
            // 'dialogDraggable' => false,    // 设置弹出层对话框不可拖动,全局通用,默认为true
            // 'dialogMaskOpacity' => 0.4,    // 设置透明遮罩层的透明度,全局通用,默认值为0.1
            // 'dialogMaskBgColor' => '#000', // 设置透明遮罩层的背景颜色,全局通用,默认为#fff
            'imageUpload' => true,
            'imageFormats' => ['jpg', 'jpeg', 'gif', 'png', 'bmp', 'webp'],
            'imageUploadURL' => '/file/blog-upload?type=default&filekey=editormd-image-file',
        ]
    ]
) ?>