PHP code example of laravelchen / laravel-editormd

1. Go to this page and download the library: Download laravelchen/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/ */

    

laravelchen / laravel-editormd example snippets


php artisan vendor:publish
config/filesystem.php

 'qiniu' => [
            'driver' => 'qiniu',
            'domains' => [
                'default' => '', //你的七牛域名
                'https' => '',         //你的HTTPS域名
                'custom' => '',                //你的自定义域名
            ],
            'access_key' => '',  //AccessKey
            'secret_key' => '',  //SecretKey
            'bucket' => '',  //Bucket名字
            'notify_url' => '',  //持久化处理回调地址
        ],


return [
       'upload_path' => 'uploads/images/',//上传文件的地址
       'upload_type' => '',//上传的方式qiniu或者本地,默认为本地
       'upload_http' => 'https',//https或者为空
       //本地:'',七牛:'qiniu'
       'width' => '100%',//宽度建议100%
       'height' => '700',//高度
       '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',  //开启时序/序列图支持
];