forked from roshan-research/moratab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (73 loc) · 3.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>مرتب</title>
<meta charset="utf-8" />
</head>
<body>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script type="text/javascript" src="editor/libs.js"></script>
<script type="text/javascript" src="editor/syntax.js"></script>
<script type="text/javascript" src="editor/buttons.js"></script>
<script type="text/javascript" src="editor/editor.js"></script>
<link type="text/css" rel="stylesheet" href="editor/editor.css">
<style type="text/css">
body {
background: #F5F5F5;
}
.container {
max-width: 700px;
}
#moratab {
margin-top: 20px;
}
@font-face {
font-family: IRMitra;
font-weight: normal;
src: url('style/IRMitra.woff') format('woff');
}
#wmd-input, .modal .btn, .modal p {
font-family: IRMitra;
}
</style>
<div class="container">
<div id="moratab">
# مرتب
متن *مرتب* یا [مارکدان]، نوشتهای است که شیوه نمایش آن با علامتهای سادهای مشخص شده است. یعنی شکل نمایش متن را لابهلای واژهها مینویسید. مثلا *خاص* بودن یک عبارت و یا **تاکید** روی نکتهها با کمک ستاره انجام میشود.
> وقتی *مرتب* مینویسید، مطمئن هستید که چیزی در متن پنهان نشده. در مقابل نرمافزار [ورد] که گاهی میبینید نشانگر روی یک خط خالی ایستاده و به صورت *مورب* قرار گرفته؛ انگار چیزی آن زیر هست. راستش آن زیر، [چیز خیلی مزخرفی] هست.
نوشتههای *مرتب* کاربردهای زیادی دارند:
+ [پرسیدن سوال](http://stackoverflow.com)
+ [بحث در مورد پروژه](https://github.com)
+ [وبنوشت](https://svbtle.com)
+ [گزارش پروژه](http://www.boute.ir)
+ ...
قرار دادن [پیوند]، پاورقی[^Footnote] و یا حتی تصویر هم در این نوشتار پیشبینی شده:
![تصویر باز شکاری](http://www.sobhe.ir/baaz/img/goshawk.jpg)
## جدول
جدول *مرتب* شده هم بسیار بامزه است (نقطهها چینش ستون را نشان میدهد):
| نوشتار | بدون نیاز به آموزش | ویژگیهای نامتناهی |
|:----------|:------------------:|:------------------:|
| مرتب | ✓ | ✗ |
| ورد | ✗ | ✓ |
## فرمولهای ریاضی
در نوشتههای تخصصی، فرمولهای ریاضی هم لازم میشوند، که میتوانید آنها را در قالب $ LaTeX $ بنویسید:
$$ P(E) = {n \choose k} p^k (1-p)^{ n-k} $$
## کد
اگر برنامهنویس هستید، تکه کد `Python` زیر، همین نوشته را به قالب `HTML` تبدیل میکند:
>>> import moratab
>>> moratab.render(content)
و بلاخره، نوشته [مرتب] با مشخص کردن آدرس پیوندها به پایان میرسد.
[مرتب]: http://www.sobhe.ir/moratab
[مارکدان]: https://daringfireball.net/projects/markdown
[پیوند]: http://peyvandha.ir
[ورد]: http://office.microsoft.com/en-us/word
[چیز خیلی مزخرفی]: http://www.antipope.org/charlie/blog-static/2013/10/why-microsoft-word-must-die.html
</div>
</div>
<script type="text/javascript">
content = $('<textarea/>').html($('#moratab').html()).val();
var editor = $('#moratab').moratab(content, {strings: {help: ''}});
</script>
</body>
</html>