PHP code example of luzucheng59 / laravel-editormd

1. Go to this page and download the library: Download luzucheng59/laravel-editormd library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

luzucheng59 / laravel-editormd example snippets


composer 

"    "luzucheng59/laravel-editormd": "^2.6"
},

'providers' => array(
    Zu\Editormd\EditorMdServiceProvider::class,
);

'aliases' => array(
    'EditormdParse' => Zu\Editormd\EditorMdFacade::class,
),

php artisan vendor:publish


return [
    'id'                 => 'editormd_id',  //textarea 父级元素id
    'upload_path'        => 'upload/images',//上传文件的地址 需要设置为可写
    'upload_type'        => '',//上传的方式qiniu或者本地, 本地:'',七牛:'qiniu'
    'upload_http'        => '',//https或者为空
    'width'              => 'auto',//宽度建议100%
    'height'             => '500',//高度
    'theme'              => 'default',//顶部的主题分为default和dark
    'editorTheme'        => 'default',//显示区域的主题分为default和pastel-on-dark 注:如果想要配置其他主题,请参考vendor/editormd/lib/theme目录下的css文件
    'previewTheme'       => 'default',//编辑区域的主题分为default,dark,
    'flowChart'          => 'true',  //流程图
    'tex'                => 'true',  //开启科学公式TeX语言支持
    'searchReplace'      => 'true',//搜索替换
    'saveHTMLToTextarea' => 'true',  //保存 HTML 到 Textarea
    'codeFold'           => 'true',  //代码折叠
    'emoji'              => 'true',  //emoji表情
    'toc'                => 'true',  //目录
    'tocm'               => 'true',  //目录下拉菜单
    'taskList'           => 'true',  //任务列表
    'imageUpload'        => 'true',  //图片本地上传支持
    'sequenceDiagram'    => 'true',  //开启时序/序列图支持
];

echo \EditormdParse::parse("#中间填写markdown格式的文本");