django 使用markdown编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django 使用markdown编辑器相关的知识,希望对你有一定的参考价值。

1.编辑

下载地址https://github.com/pandao/editor.md

   <link rel="stylesheet" href="{% static ‘plugin/editor.md/css/editormd.css‘ %}">

......

        <div id="editormd" class="col-md-10 text-left">
                <textarea name="" style="display: none" id="id_body"></textarea>
        </div>
.......

{% block javasript %}
    <script src="{% static ‘plugin/editor.md/editormd.min.js‘ %}"></script>
    <script>
        $(function () {
            var editor=editormd("editormd",{
                width:"100%",
                height:"640",
                syncScrolling:"single",
                path:"{% static ‘plugin/editor.md/lib/‘ %}"
            });
        })
    </script>

    <script>
    function publish_article() {
        var title=$("#id_title").val();
        var columnid = $("#which_column").val();
        var body = $("#id_body").val();
        $.ajax({
            url:"{% url ‘article:article_post‘ %}",
            type:"POST",
            data:{"title":title,"columnid":columnid,"body":body},
            success:function (args) {
                if(args=="1"){
                    alert("保存完成");
                    location.href="{% url ‘article:article_list‘ %}";
                }else if(args==2){
                    console.log("todo2")
                }else{
                    alert("内容有误,重新填写")
                }
            }
        });
    }
    </script>
{% endblock %}

2. 显示

以上是关于django 使用markdown编辑器的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Django Summernote 中显示编程片段的代码块?

python测试开发django-55.xadmin使用markdown文档编辑器(django-mdeditor)

django 使用markdown编辑器

Django搭建个人博客平台3---博客表结构设计和markdown编辑器

Django搭建个人博客平台3---博客表结构设计和markdown编辑器

Django markdown 使用(admin后台md编辑器,前端显示,前端md编辑器)