javaweb项目集成editor.md编辑器—markdown编辑器

javaweb项目集成editor.md编辑器—markdown编辑器最近写一个博客系统,需要集成编辑器,所以我就打算集成一个markdown编辑器用来编辑文章。在网上搜,好像editor.md这个国产开源的markdown编辑器比较好。不过想吐槽是网上的教程真的。。。哈哈哈,开始我们的教程:1.首先在editor.md官网(http://pandao.github.io/editor.md/)下载这一个编辑器。这是下载好后的文件目录2.将目录下的css目

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

最近写一个博客系统,需要集成编辑器,所以我就打算集成一个markdown编辑器用来编辑文章。在网上搜,好像editor.md这个国产开源的markdown编辑器比较好。不过想吐槽是网上的教程真的。。。哈哈哈,开始我们的教程:
1.首先在editor.md官网(http://pandao.github.io/editor.md/)下载这一个编辑器。
这是下载好后的文件目录

这里写图片描述
2.将目录下的css目录,images目录,lib目录,plugins目录,src目录以及example目录中的css目录,js目录和整合一下
这里写图片描述
3.将提取后的文件放在你项目的静态文件夹中,我用的idea,我放在web目录下的static文件夹中,
写一个html如下

<!DOCTYPE html>
<html lang="zh">
    <head>
        <meta charset="utf-8" />
        <title>Simple example - Editor.md examples</title>
        <link rel="stylesheet" href="/static/Admin/editor/css/style.css" />
        <link rel="stylesheet" href="/static/Admin/editor/css/editormd.css" />
        <link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
        <link rel="stylesheet" href="/static/Public/css/bootstrap_button.css">\
        <style> #submit_button{ display:block; margin-left: 42%; margin-top: 2em; margin-bottom: 2em; } .input{ display: block; margin-left: 20%; } </style>
    </head>
    <body>
        <div id="layout">
            <div id="my-editormd" >
                 <textarea id="my-editormd-markdown-doc" name="my-editormd-markdown-doc" style="display:none;"></textarea>
                <!-- 注意:name属性的值-->
                <textarea id="my-editormd-html-code" name="my-editormd-html-code" style="display:none;"></textarea>
            </div>
            <button class="button button-block button-rounded button-action button-large" id="submit_button">确认提交</button>

        </div>

        <script src="/static/Public/jquery.js"></script>
        <script src="/static/Admin/editor/js/editormd.js"></script>
        <script type="text/javascript"> <!--为了让editor.md编辑器完整的显示出来--> var testEditor; $(function() { 
     testEditor = editormd("my-editormd", { width : "90%", height : 640, syncScrolling : "single", path : "/static/Admin/editor/lib/", saveHTMLToTextarea : true }); }); <!--然后用ajax将编辑器中的md格式的数据提交到后台,存储在数据库中,有的人可能存储的是html格式的,也行,这个看你自己的选择了,不过存储.md格式还是要好一点--> $("#submit_button").click(function () { $.ajax({ type: "post", url: "", data: { content:$("#my-editormd-html-code").val(), }, contentType: "application/x-www-form-urlencoded; charset=utf-8", dataType: "json", success: function (data) { }, error:function () { } }); }); </script>
    </body>
</html>

4.第三步是为了把数据存储到数据库中,这一步那就是将数据库存储的数据在前端显示。
同样的写个jsp文件如下

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html lang="zh">
<head>
    <meta charset="utf-8" />
    <title>HTML Preview(markdown to html) - Editor.md examples</title>
    <link rel="stylesheet" href="/static/Admin/editor/css/style.css" />
    <link rel="stylesheet" href="/static/Admin/editor/css/editormd.preview.css" />
    <link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
    <style> .editormd-html-preview { width: 90%; margin: 0 auto; padding-top: 9em; } </style>
</head>
<body>
<div id="layout">
    <div id="test-editormd-view">
        <textarea style="display:none;" name="test-editormd-markdown-doc"></textarea>
    </div>
    <div id="test-editormd-view2">
                <%--存放md数据--%>
                <textarea id="append-test" style="display:none;">
                    ${articleContent}
                </textarea>
    </div>
</div>
<script src="/static/Public/jquery.js"></script>
<script src="/static/Admin/editor/lib/marked.min.js"></script>
<script src="/static/Admin/editor/lib/prettify.min.js"></script>
<script src="/static/Admin/editor/lib/raphael.min.js"></script>
<script src="/static/Admin/editor/lib/underscore.min.js"></script>
<script src="/static/Admin/editor/lib/sequence-diagram.min.js"></script>
<script src="/static/Admin/editor/lib/flowchart.min.js"></script>
<script src="/static/Admin/editor/lib/jquery.flowchart.min.js"></script>
<script src="/static/Admin/editor/js/editormd.js"></script>
<script type="text/javascript"> $(function() { 
     var testEditormdView, testEditormdView2; $.get("test.md", function(markdown) { 
     testEditormdView = editormd.markdownToHTML("test-editormd-view", { markdown : markdown ,//+ "\r\n" + $("#append-test").text(), htmlDecode : "style,script,iframe", // you can filter tags decode tocm : true, // Using [TOCM] // markdownSourceCode : true, // 是否保留 Markdown 源码,即是否删除保存源码的 Textarea 标签 emoji : true, taskList : true, tex : true, // 默认不解析 flowChart : true, // 默认不解析 sequenceDiagram : true, // 默认不解析 }); // 获取Markdown源码 //console.log(testEditormdView.getMarkdown()); //alert(testEditormdView.getMarkdown()); }); testEditormdView2 = editormd.markdownToHTML("test-editormd-view2", { htmlDecode : "style,script,iframe", // you can filter tags decode emoji : true, taskList : true, tex : true, // 默认不解析 flowChart : true, // 默认不解析 sequenceDiagram : true, // 默认不解析 }); }); </script>
</body>
</html>

上面几步都是我从我的项目里抽出来的代码,真实可用。
5.关于编辑器拓展功能的实现我就不多说了,这方面度娘上的文章很多了。

以上只是用源代码说明一下,怎样在Javaweb项目中集成editor.md编辑器,知识很浅,只是希望有些童鞋能少走些弯路。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/192674.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • Django 安装_centos redis安装

    Django 安装_centos redis安装安装redis1.使用Homebrew安装Redisbrewinstallredis执行上述命令后出现以下内容,则成功安装Downloadfailed:https://mirrors.

    2022年7月30日
    7
  • 激活visio2013的产品密钥_visio激活确认id

    激活visio2013的产品密钥_visio激活确认id最近需要用Visio,由于密钥过期了,也不知道怎么重新输密钥,于是网上搜索,终于找到了一个方法。KMSpico工具,安装完后直接打开点击左边红色按钮就可以了。如图:最后附上工具链接https://pan.baidu.com/s/1Ya2twOrHkKLrPu9WgHf8_Q…

    2022年8月13日
    4
  • java8新特性(拉姆达表达式lambda)

    java8新特性(拉姆达表达式lambda)一、函数式接口函数式接口(functionalinterface也叫功能性接口,其实是同一个东西)。简单来说,函数式接口是只包含一个方法的接口。比如Java标准库中的java.lang.Runnable和java.util.Comparator都是典型的函数式接口。java8提供@FunctionalInterface作为注解,这个注解是非必须的,只要接口符合函数式接口的标准

    2022年9月19日
    2
  • cholesky分解_java toarray方法

    cholesky分解_java toarray方法接着LU分解继续往下,就会发展出很多相关但是并不完全一样的矩阵分解,最后对于对称正定矩阵,我们则可以给出非常有用的cholesky分解。这些分解的来源就在于矩阵本身存在的特殊的结构。对于矩阵A,如果没有任何的特殊结构,那么可以给出A=L*U分解,其中L是下三角矩阵且对角线全部为1,U是上三角矩阵但是对角线的值任意,将U正规化成对角线为1的矩阵,产生分解A=L*D*U,D为对角矩阵。如果A为对…

    2025年8月5日
    2
  • pytest的使用_java中方法的调用

    pytest的使用_java中方法的调用Pytest执行用例规则Pytest在命令行中支持多种方式来运行和选择测试用例1.对某个目录下所有的用例pytest2.对模块中进行测试pytesttest_mod.py3.对文件夹进行

    2022年7月29日
    9
  • 进程通信方式总结与盘点

    进程通信方式总结与盘点进程通信是指进程之间的信息交换 这里需要和进程同步做一下区分 进程同步控制多个进程按一定顺序执行 进程通信是一种手段 而进程同步是目标 从某方面来讲 进程通信可以解决进程同步问题 首先回顾下我们前面博文中讲到的信号量机制 为了实现进程的互斥与同步 需要在进程间交换一定的信息 因此信号量机制也可以被归为进程通信的一种方式 但是也被称为低级进程通信 主要原因为 效率低 一次只可操作少量的

    2025年7月26日
    6

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号