Browse Source

beta

pull/1/head
xiaoz 7 years ago
parent
commit
f2331965ac
  1. 36
      README.md
  2. 21
      index.html

36
README.md

@ -1,2 +1,36 @@
# MDtoHTML
快速将Markdown文件转换为HTML
MDtoHTML可以快速将Markdown文件转换为HTML
### 环境要求
* PHP且 && CURL
### 示例
```
<!DOCTYPE html>
<html lang="zh-cmn-Hans" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>MDtoHTML</title>
<meta name="generator" content="EverEdit" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
<body>
<div id="mdtohtml"></div>
<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.get("http://markdown.win/api.php?url=http://markdown.win/README.md",function(data,status){
if(status == 'success') {
$("#mdtohtml").html(data);
}
});
});
</script>
</body>
</html>
```
### 演示地址
* [http://markdown.win/](http://markdown.win/api.php?url=https://raw.githubusercontent.com/helloxz/IPinfo/master/readme.md)

21
index.html

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="zh-cmn-Hans" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>MDtoHTML</title>
<meta name="generator" content="EverEdit" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
<body>
<div id="mdtohtml"></div>
<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script>
$(document).ready(function(){
$("#mdtohtml").load("http://markdown.win/api.php?url=http://markdown.win/README.md");
});
</script>
</body>
</html>
Loading…
Cancel
Save