</script>
<?php endif;?>
<?php else:?>
<!--不开启markdown时使用ueditor-->
<!-- 配置文件 -->
<script type="text/javascript" src="./ueditor/ueditor.config.js"></script>
<!-- 编辑器源码文件 -->
<script type="text/javascript" src="./ueditor/ueditor.all.min.js"></script>
<!-- 语言包文件(建议手动加在语言,避免在ie下有时因为加载语言失败导致编辑器加载失败) -->
<script type="text/javascript" src="./ueditor/lang/zh-cn/zh-cn.js"></script>
<script type="text/javascript">
var editor = UE.getEditor('text')
</script>
$text = Typecho_Common::lockHTML($text);
4. 打开模版文件夹的footer.php 这里我使用的是默认模版 所以路径是\usr\themes\default 在
<?php $this->footer(); ?>
<script type="text/javascript" src="<?php $this->options->siteUrl(); ?>admin/ueditor/third-party/SyntaxHighlighter/shCore.js"></script>
<link rel="stylesheet" href="<?php $this->options->siteUrl(); ?>admin/ueditor/third-party/SyntaxHighlighter/shCoreDefault.css" type="text/css" />
<script>
SyntaxHighlighter.all() //执行代码高亮
</script>
textarea.appendChild(document.createTextNode(code));
textarea.style.height = "100%";