怎样使用editor.md把markdown转换成html

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样使用editor.md把markdown转换成html相关的知识,希望对你有一定的参考价值。

markdown文件一般可以用记事本等文本编辑器打开,但是看不到排版效果,只有生成html或者pdf之后才有效果。那么markdown文件怎么转换成html或者pdf文件呢?来看看小编的介绍吧。

工具/原料
markdownPad软件
markdown文件
方法/步骤
首先我们需要安装markdownPad软件,这是专门编辑和生成转换markdown文件为html或者pdf文件的软件,下载安装激活教程如下。
0markdownPad免费用注册码/秘钥激活
markdown文件怎么转换成html或者pdf文件
然后我们把markdown文件用markdownPad软件打开。左边是源码右边是效果。
markdown文件怎么转换成html或者pdf文件
然后我们点击菜单栏的“文件”,之后是“导出”,再选择导出的格式,可以看到有html和pdf两项。
markdown文件怎么转换成html或者pdf文件
保存为html文件后,markdown文件可以直接用浏览器打开。
markdown文件怎么转换成html或者pdf文件
5
保存为pdf文件后,markdown文件可以直接用pdf阅读器打开。
markdown文件怎么转换成html或者pdf文件
END
注意事项
markdown文件怎么转换成html或者pdf文件
参考技术A :markdown文件用浏览器直接另存即可转换成html。 转换为PDF,则 1、如果你的md文件使用chrome预览,就比较简单了。 点打印,目标,选本地另存为pdf,即可。 2、如果你的浏览器有虚拟的PDF打印机的,请你PDF虚拟打印机打印你要输出的内容

工具使用-Editor.md编辑器

文章目录

前言

记录一下编辑器的安装使用过程,可能会有错误
editor.md是一个markdown编辑器,可至github下载它的发行版本
百度看见有它的漏洞

editor.md-releases

Editor.md - 开源在线Markdown编辑器

一、环境

phpstudy

phpstorm

editor.md

二、环境搭建

开启一下apachenginx服务,ftp1mysql2可以不用开启

把下载好的editor.md文件夹放到phpstudyWWW文件夹3

这两个示例文件夹4,访问一下http://127.0.0.1/test/editor.md/examples/simple.html看看editor.md能不能用的

出现如下的界面后表示editor.md生效了

三、创建编辑器

下方的几个文件和文件夹需要用到

editor.md/css/editormd.css
editor.md/editormd.js
editor.md/examples/js/jquery.min.js
editor.md/lib

如果examples需要删除的话,就需要将jquery移动到其他地方
创建一个index.html,具体的使用方式都在注释中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--设置css路径-->
    <link rel="stylesheet" href="editor.md/css/editormd.css">
    <!--设置js路径-->
    <script src="jquery.min.js"></script>
    <script src="editor.md/editormd.js"></script>
    <!--设置编辑器信息-->
    <script type="text/javascript">
        $(function() 
            var editor = editormd("editor", 
                width: "100%",//设置文本框的宽度(非必要),既可以百分比也可以和height一样
                height: "500px",//设置文本框的高度(非必要),单位为像素,px也可以省略不写
                //markdown: "#123123",     // 默认的markdown内容(优先级较高,非必要)
                path : "editor.md/lib/"  // 模块的调用路径(必要)
            );
        );
    </script>
</head>
<body>
<!--文本框,id必须为editor-->
<div id="editor">
    <!--
    设置默认的markdown内容,优先级较低
    mardown内容需要用textarea标签括起来,而且编辑器只会显示第一个textarea标签的内容
    -->
    <textarea>### Hello Editor.md !</textarea>
    <textarea>123123</textarea>
</div>
</body>
</html>


  1. 需要文件上传或文件下载的时候再开启ftp ↩︎

  2. 数据库 ↩︎

  3. 在访问www时,URL是http://127.0.0.1/,以此类推。 ↩︎

  4. 示例文件夹放在实际环境中比较危险,建议删除 ↩︎

以上是关于怎样使用editor.md把markdown转换成html的主要内容,如果未能解决你的问题,请参考以下文章

Editor.md的安装使用(MarkDown)

工具使用-Editor.md编辑器

工具使用-Editor.md编辑器

工具使用-Editor.md编辑器

如何在angular项目中使用Editor.md

如何在angular项目中使用Editor.md