Skip to content

Commit

Permalink
修复非html解析下部分功能转义问题
Browse files Browse the repository at this point in the history
  • Loading branch information
JaxsonWang committed Sep 15, 2019
1 parent eb3f197 commit 5919677
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# WP Editor.md

### Version 10.0.5

* 功能渲染转义问题修复

### Version 10.0.4

* 修复思维导图地址错误问题
Expand Down
6 changes: 3 additions & 3 deletions assets/version.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"author": "淮城一只猫",
"name": "WP Editor.md",
"version": "10.0.4",
"version": "10.0.5",
"assets": {
"ClipBoard": "2.0.4",
"CodeMirror": "5.48.4",
"Config": "10.0.4",
"Editormd": "10.0.4",
"Config": "10.0.5",
"Editormd": "10.0.5",
"Emojify.js": "1.1.0",
"jQuery": "1.12.4",
"KaTeX": "0.11.0",
Expand Down
9 changes: 3 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://iiong.com/
Tags: Editor,Markdown,Markdown Edit,Jetpack,KaTeX,PrismJS,Mermaid
Requires at least: 4.9.8
Tested up to: 5.2.3
Stable tag: 10.0.4
Stable tag: 10.0.5
Requires PHP: 5.3.0
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -57,12 +57,9 @@ We recommend that you enable plugins in a clean environment (please disable othe

== Changelog ==

= 10.0.4 =
= 10.0.5 =

* 修复思维导图地址错误问题
* code 块内 katex 公式不解析的问题
* 修复多媒体无法插入附件的问题
* 更新编辑器依赖文件和功能核心文件
* 功能渲染转义问题修复

注意:如果使用插件请不要使用Gutenberg编辑器,会出现文章数据丢失的问题。

Expand Down
4 changes: 2 additions & 2 deletions wp-editormd.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Editor.md
* Plugin URI: https://github.com/JaxsonWang/WP-Editor.md
* Description: Perhaps this is the best and most perfect Markdown editor in WordPress
* Version: 10.0.4
* Version: 10.0.5
* Author: 淮城一只猫
* Author URI: https://iiong.com
* License: GPL-3.0+
Expand All @@ -18,7 +18,7 @@
use EditormdUtils\Activator;
use EditormdUtils\Deactivator;

define( 'WP_EDITORMD_VER', '10.0.4' ); //版本说明
define( 'WP_EDITORMD_VER', '10.0.5' ); //版本说明
define( 'WP_EDITORMD_URL', plugins_url( '', __FILE__ ) ); //插件资源路径
define( 'WP_EDITORMD_PATH', dirname( __FILE__ ) ); //插件路径文件夹
define( 'WP_EDITORMD_NAME', plugin_basename( __FILE__ ) ); //插件名称
Expand Down

0 comments on commit 5919677

Please sign in to comment.