后台文章编辑器HTML标签默认转义问题处理,新增表格无法保存文章问题
This commit is contained in:
parent
bcc124fcc5
commit
3f8e6a5fb1
@ -148,6 +148,9 @@ class Article extends BaseController
|
||||
{
|
||||
$param = get_params();
|
||||
if (request()->isAjax()) {
|
||||
if (isset($param['table-align'])) {
|
||||
unset($param['table-align']);
|
||||
}
|
||||
if (isset($param['docContent-html-code'])) {
|
||||
$param['content'] = $param['docContent-html-code'];
|
||||
$param['md_content'] = $param['docContent-markdown-doc'];
|
||||
|
@ -148,6 +148,9 @@ class Goods extends BaseController
|
||||
{
|
||||
$param = get_params();
|
||||
if (request()->isAjax()) {
|
||||
if (isset($param['table-align'])) {
|
||||
unset($param['table-align']);
|
||||
}
|
||||
if (isset($param['docContent-html-code'])) {
|
||||
$param['content'] = $param['docContent-html-code'];
|
||||
$param['md_content'] = $param['docContent-markdown-doc'];
|
||||
|
@ -1,6 +1,10 @@
|
||||
{extend name="common/base"/}
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<style type="text/css">
|
||||
.editormd-code-toolbar select{display:inline-block}
|
||||
.editormd li{list-style: inherit;}
|
||||
</style>
|
||||
<form class="layui-form body-table">
|
||||
<div class="layui-form-bar" style="padding-bottom:0">
|
||||
<h3 class="h3-title">创建文章</h3>
|
||||
@ -101,7 +105,7 @@
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<div>
|
||||
<div id="mdContent" style="display:none;"></div>
|
||||
<textarea id="mdContent" style="display:none;"></textarea>
|
||||
<div id="docContent"></div>
|
||||
</div>
|
||||
{include file="common/mdeditor" id="docContent" markdown="mdContent" sub="100" toolbar="[]" /}
|
||||
|
@ -1,6 +1,10 @@
|
||||
{extend name="common/base"/}
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<style type="text/css">
|
||||
.editormd-code-toolbar select{display:inline-block}
|
||||
.editormd li{list-style: inherit;}
|
||||
</style>
|
||||
<form class="layui-form body-table">
|
||||
<div class="layui-form-bar" style="padding-bottom:0">
|
||||
<h3 class="h3-title">编辑文章</h3>
|
||||
@ -117,7 +121,7 @@
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<div style="margin-top:-2px; margin-right:2px">
|
||||
<div id="mdContent" style="display:none;">{$article.md_content}</div>
|
||||
<textarea id="mdContent" style="display:none;">{$article.md_content|raw}</textarea>
|
||||
<div id="docContent"></div>
|
||||
</div>
|
||||
{include file="common/mdeditor" id="docContent" markdown="mdContent" sub="100" toolbar="[]" /}
|
||||
|
@ -22,7 +22,7 @@
|
||||
placeholder : "此处开始编写您要发布的内容...",//这里不设置则为默认的
|
||||
path : '/static/mdeditor/lib/',
|
||||
height : window.innerHeight-editormdSub,
|
||||
markdown : document.getElementById(editormdMarkdown).innerHTML,
|
||||
markdown : document.getElementById(editormdMarkdown).value,
|
||||
htmlDecode : "style,script,iframe",
|
||||
imageUpload: true,
|
||||
imageFormats: ["jpg", "jpeg", "gif", "png", "bmp", "webp"],
|
||||
|
@ -17,6 +17,8 @@
|
||||
top:1px;
|
||||
right:1px;
|
||||
}
|
||||
.editormd-code-toolbar select{display:inline-block}
|
||||
.editormd li{list-style: inherit;}
|
||||
</style>
|
||||
<form class="layui-form body-table">
|
||||
<div class="layui-form-bar" style="padding-bottom:0">
|
||||
@ -145,7 +147,7 @@
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<div>
|
||||
<div id="mdContent" style="display:none;"></div>
|
||||
<textarea id="mdContent" style="display:none;"></textarea>
|
||||
<div id="docContent"></div>
|
||||
</div>
|
||||
{include file="common/mdeditor" id="docContent" markdown="mdContent" sub="100" toolbar="[]" /}
|
||||
|
@ -17,6 +17,8 @@
|
||||
top:1px;
|
||||
right:1px;
|
||||
}
|
||||
.editormd-code-toolbar select{display:inline-block}
|
||||
.editormd li{list-style: inherit;}
|
||||
</style>
|
||||
<form class="layui-form body-table">
|
||||
<div class="layui-form-bar" style="padding-bottom:0">
|
||||
@ -161,8 +163,8 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<div>
|
||||
<div id="mdContent" style="display:none;">{$goods.md_content}</div>
|
||||
<div>
|
||||
<textarea id="mdContent" style="display:none;">{$goods.md_content|raw}</textarea>
|
||||
<div id="docContent"></div>
|
||||
</div>
|
||||
{include file="common/mdeditor" id="docContent" markdown="mdContent" sub="100" toolbar="[]" /}
|
||||
|
Loading…
x
Reference in New Issue
Block a user