怎样使用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
下载它的发行版本
百度看见有它的漏洞
一、环境
phpstudy
phpstorm
editor.md
二、环境搭建
把下载好的
editor.md
文件夹放到phpstudy
的WWW
文件夹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>
以上是关于怎样使用editor.md把markdown转换成html的主要内容,如果未能解决你的问题,请参考以下文章