You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

88 lines
3.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Markdown Preview</title>
<link rel="stylesheet" href="manhattan.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div mhtn="container">
<div mhtn="row">
<div mhtn="col xs-100 sm-100 md-100">
<h1>Markdown Preview</h1>
<p>Markdown เปนการเขยนแบบนงเพอใส style ตางๆเขาไปเวลาแสดงผล syntax ไมบซอน ไมเยนเยอ ตวอยางหลกๆ กตามทเหนดานลางครบ ลองแกลองทำดกพกกจะเขาใจคร</p>
<p>รายละเอยด syntax ทงหมดจรงๆกหาขอมลตาม <a href="http://daringfireball.net/projects/markdown/">project หลกเค</a></p>
</div>
</div>
<div mhtn="row">
<div mhtn="col xs-100 sm-100 md-50">
<h1><u>Editor</u></h1>
</div>
<div mhtn="col xs-100 sm-100 md-50">
<h1><u>Preview</u> (Markdown syntax)</h1>
</div>
</div>
<div mhtn="row">
<div mhtn="col xs-100 sm-100 md-50">
<textarea id="id_text" rows="30" style="width:100%" name="text">
# ตวใหญ h1
## ตวใหญ h2
วใหญ h2 อกแบบ
-------------
### ตวใหญ h3
#### ตวใหญ h4
__ตวหนา 1__ _ตวเอยง 1_
**ตวหนา 2** *ตวเอยง 2*
![รป](http://getexpensy.com/static/images/logo_144.png) <<--
[งไปหนาแรก](http://everyday.in.th/) <<-- ทำล
---------
รายการเปนขอๆ
* 1
* 2
* 3
* 3.1 (เว 4 spaces างหน)
* 3.2
* 3.2.1 (เว 4*2 spaces างหน)
</textarea>
</div>
<div mhtn="col xs-100 sm-100 md-50">
<div id="preview"></div>
</div>
</div>
</div>
<nav id="footer" mhtn="container flex">
<div mhtn="row">
<div mhtn="col xs-100">
<small>
[CC] 2015 <a href="http://everyday.in.th">everyday.in.th</a></a>
</small>
</div>
</div>
</nav>
<script src="jquery.min.js"></script>
<script src="markdown.js"></script>
<script>
function Editor(input, preview) {
this.update = function () {
preview.innerHTML = markdown.toHTML(input.value);
};
input.editor = this;
this.update();
}
var ggId = function (id) { return document.getElementById(id); };
new Editor(ggId("id_text"), ggId("preview"));
$('#id_text').on('keyup', function(e) {
new Editor(ggId("id_text"), ggId("preview"));
});
</script>
</body>
</html>