1 Star 0 Fork 16

yoyo19821212/经典H5前台脚手架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
form_editor_md.html 2.40 KB
一键复制 编辑 原始数据 按行查看 历史
BEE480743C17C5808029F1440695BF06 提交于 2020-03-11 14:05 . submit
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<title>HTML Preview(markdown to html) - Editor.md examples</title>
<link rel="stylesheet" href="./css/plugins/editormd/editormd.preview.css" />
<style>
</style>
</head>
<body>
<div id="layout">
<div id="test-editormd-view">
<textarea style="display:none;" name="test-editormd-markdown-doc">###Hello world!</textarea>
</div>
</div>
<script src="./js/jquery.min.js"></script>
<script src="./js/plugins/editormd/lib/marked.min.js"></script>
<script src="./js/plugins/editormd/lib/prettify.min.js"></script>
<script src="./js/plugins/editormd/lib/raphael.min.js"></script>
<script src="./js/plugins/editormd/lib/underscore.min.js"></script>
<script src="./js/plugins/editormd/lib/sequence-diagram.min.js"></script>
<script src="./js/plugins/editormd/lib/flowchart.min.js"></script>
<script src="./js/plugins/editormd/lib/jquery.flowchart.min.js"></script>
<script src="./js/plugins/editormd/editormd.js"></script>
<script type="text/javascript">
$(function() {
var testEditormdView;
$.get("test.md", function(markdown) {
testEditormdView = editormd.markdownToHTML("test-editormd-view", {
markdown : markdown ,//+ "\r\n" + $("#append-test").text(),
//htmlDecode : true, // 开启 HTML 标签解析,为了安全性,默认不开启
htmlDecode : "style,script,iframe", // you can filter tags decode
//toc : false,
tocm : true, // Using [TOCM]
//tocContainer : "#custom-toc-container", // 自定义 ToC 容器层
//gfm : false,
//tocDropdown : true,
// markdownSourceCode : true, // 是否保留 Markdown 源码,即是否删除保存源码的 Textarea 标签
emoji : true,
taskList : true,
tex : true, // 默认不解析
flowChart : true, // 默认不解析
sequenceDiagram : true, // 默认不解析
});
//console.log("返回一个 jQuery 实例 =>", testEditormdView);
// 获取Markdown源码
//console.log(testEditormdView.getMarkdown());
//alert(testEditormdView.getMarkdown());
});
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML/CSS
1
https://gitee.com/yoyo19821212/classic_h5_front_desk_scaffold.git
git@gitee.com:yoyo19821212/classic_h5_front_desk_scaffold.git
yoyo19821212
classic_h5_front_desk_scaffold
经典H5前台脚手架
master

搜索帮助