Skip to content
This repository was archived by the owner on Aug 22, 2021. It is now read-only.

Commit afb98eb

Browse files
committed
Update README.
1 parent 2161b39 commit afb98eb

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ $ composer require "overtrue/laravel-ueditor:~1.0"
1212

1313
## 配置
1414

15-
1. 添加下面一行到 `config/app.php` 中 `providers` 部分:
15+
1. 添加下面一行到 `config/app.php``providers` 部分:
1616

1717
```php
1818
Overtrue\LaravelUEditor\UEditorServiceProvider::class,
1919
```
2020

21-
2. 发布配置文件与资源
21+
2. 发布配置文件与资源
2222

2323
```php
24-
php artisan vendor:publish
24+
$ php artisan vendor:publish
2525
```
2626

27-
3. 模板引入编辑器
27+
3. 模板引入编辑器
2828

29-
> 这行的作用是引入编辑器需要的 css,js 等文件,所以你不需要再手动去引入它们。
29+
这行的作用是引入编辑器需要的 css,js 等文件,所以你不需要再手动去引入它们。
3030

3131
```php
3232
@include('vendor.ueditor.assets')
3333
```
3434

35-
4. 编辑器的初始化
35+
4. 编辑器的初始化
3636

3737
```html
3838
<!-- 实例化编辑器 -->
@@ -42,7 +42,6 @@ $ composer require "overtrue/laravel-ueditor:~1.0"
4242
ue.execCommand('serverparam', '_token', '{{ csrf_token() }}'); // 设置 CSRF token.
4343
});
4444
</script>
45-
@stop
4645

4746
<!-- 编辑器容器 -->
4847
<script id="container" name="content" type="text/plain"></script>

0 commit comments

Comments
 (0)