Dede自动排版与简繁转换 可清理冗余代码
DedeCMS的自动排版与简繁转换插件,支持清理冗余代码,本插件适于DedeCMS所有版本。
主要功能:
1、自动排版,将编辑器内的内容自动排版,段落自动居左,图片自动居中,清除多余空行,可定制段前是否空格。
2、图片排版,将编辑器中的图片自动居中,免去每张单独设置的烦恼。
3、简繁转换,可在编辑器中直接进行简繁转换,一键操作,方便快捷。
使用方法:
1、请先 下载js文件,并把文件夹解压到 /include/veryhuo_js/ (请注意JS的路径)目录下
<script type="text/javascript" src="../include/veryhuo_js/plus_format_fck.js"></script>
然后找到以下代码(本代码的作用是载入编辑器)
<?php
GetEditor("body",$body,450);
?>
在下方加入如下代码
<input type="button" id="buttonj2f" onClick="jian2fan('body')" value="简->繁"> <input type="button" name="formatbutton" value="自动排版" onClick="FormatText('body')"><input id="ifblank" name="ifblank" type="checkbox"><label for="ifblank" style='font-size:12px;'>段前空格?</label> <input type="button" name="formatbutton_img" value="图片排版" onClick="FormatImages('body')"> <input type="button" name="button" value="插入分页标签" onclick="javascript:insertHTMLToEditor('body', '#空格p#副空格标题空格#e#');" /><!--前边分页符的空格删除--> |
这是新添加文章,同样的方法把article_edit.htm编辑文章模板也近上面的操作步骤修改保存后上传,大功告成!!!