karmi-markout 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,467 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
+
8
+ <title>Markdown</title>
9
+
10
+ <style type="text/css" media="screen">
11
+ /*
12
+ = COLORS =
13
+
14
+ Steel blue #d8dde3
15
+ Black blue #172533
16
+ Dark grey #525c66
17
+ Ash grey #dfe2e5
18
+ Live blue #1177DD
19
+ Pale green face #b9cbdd
20
+
21
+ */
22
+
23
+ body {
24
+ color: #222;
25
+ background: #fafafa;
26
+ font-family: Helvetica, sans-serif;
27
+ font-size: 85%;
28
+ line-height: 155%;
29
+ margin: 0;
30
+ padding: 0 5em;
31
+ }
32
+
33
+ .cleaner
34
+ { clear: both; height: 0; line-height: 0; width: 0; border: 0; font-size: 1px; }
35
+
36
+ #content {
37
+ color: #172533;
38
+ font-size: 1.1em;
39
+ max-width: 55em;
40
+ padding-bottom: 4em;
41
+ margin: 7px auto;
42
+ margin-bottom: 4em;
43
+ border-top: 4px solid #172533;
44
+ border-bottom: 4px solid #b9cbdd;
45
+ }
46
+
47
+ h1, h2, h3, h4, h5, h6 {
48
+ color: #222;
49
+ }
50
+ h1, h2 {
51
+ color: #172533;
52
+ font-weight: normal;
53
+ }
54
+ h1 a, h2 a { color: #172533; }
55
+
56
+ h1 {
57
+ font-size: 2.25em;
58
+ letter-spacing: -1px;
59
+ margin-bottom: 0.5em;
60
+ }
61
+
62
+ h2 {
63
+ font-size: 1.5em;
64
+ letter-spacing: -1px;
65
+ padding: 1.15em 0 0 0;
66
+ margin: 1.25em 0 0.25em 0;
67
+ border-top: 4px solid #d8dde3;
68
+ }
69
+
70
+ h3 {
71
+ color: #172533;
72
+ font-size: 1.1em;
73
+ font-weight:bold;
74
+ margin: 1.8em 0 0.25em 0;
75
+ letter-spacing:-1px;
76
+ }
77
+
78
+ h3 a {
79
+ text-decoration:underline;
80
+ }
81
+
82
+ p {
83
+ margin: 0 0 0.8em 0;
84
+ }
85
+
86
+ a {
87
+ color: #172533;
88
+ text-decoration:underline;
89
+ }
90
+ a:hover {
91
+ color: #1177DD;
92
+ text-decoration:underline;
93
+ }
94
+ a img {
95
+ border:none;
96
+ }
97
+
98
+ code, pre, textarea, tt {
99
+ font-family: "Monaco", "lucida console", "bitstream vera sans mono", monospace;
100
+ font-size: 100%;
101
+ }
102
+ pre {
103
+ color: #172533;
104
+ background: #f5f9fc;
105
+ font-size: 100%;
106
+ line-height: 155%;
107
+ border: 4px solid #dfe2e5;
108
+ padding: 0.5em;
109
+ white-space: pre-wrap; white-space: -moz-pre-wrap !important;
110
+ }
111
+
112
+ hr { display: none; }
113
+
114
+ </style>
115
+
116
+ <style type="text/css" media="print">
117
+ body
118
+ { color: #000;
119
+ background: #fff;
120
+ font-size: 85%;
121
+ font-family: Helvetica, sans-serif;
122
+ margin: 0.5cm; }
123
+
124
+ a
125
+ { color: #000;
126
+ text-decoration: underline; }
127
+
128
+ a img
129
+ { border: none; }
130
+
131
+ h2 {
132
+ font-size: 1.5em;
133
+ letter-spacing: -0.05em;
134
+ padding: 1.15em 0 0 0;
135
+ margin: 1.25em 0 0.25em 0;
136
+ border-top: 1mm solid #999;
137
+ }
138
+
139
+ h3 {
140
+ font-size: 1.1em;
141
+ font-weight:bold;
142
+ margin: 1.8em 0 0.25em 0;
143
+ letter-spacing: -0.05em;
144
+ }
145
+
146
+ pre {
147
+ border: 1pt solid #ccc;
148
+ padding: 0.5em;
149
+ white-space: pre-wrap; white-space: -moz-pre-wrap !important;
150
+ }
151
+
152
+ </style>
153
+
154
+ </head>
155
+
156
+ <body>
157
+
158
+ <div id="content">
159
+ <h1>Markdown</h1>
160
+
161
+ <h2>Download</h2>
162
+
163
+ <p><a href="http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip">Markdown 1.0.1</a> (18 KB) -- 17 Dec 2004</p>
164
+
165
+ <h2>Introduction</h2>
166
+
167
+ <p>Markdown is a text-to-HTML conversion tool for web writers. Markdown
168
+ allows you to write using an easy-to-read, easy-to-write plain text
169
+ format, then convert it to structurally valid XHTML (or HTML).</p>
170
+
171
+ <p>Thus, "Markdown" is two things: (1) a plain text formatting syntax;
172
+ and (2) a software tool, written in Perl, that converts the plain text
173
+ formatting to HTML. See the <a href="/projects/markdown/syntax">Syntax</a> page for details pertaining to
174
+ Markdown's formatting syntax. You can try it out, right now, using the
175
+ online <a href="/projects/markdown/dingus">Dingus</a>.</p>
176
+
177
+ <p>The overriding design goal for Markdown's formatting syntax is to make
178
+ it as readable as possible. The idea is that a Markdown-formatted
179
+ document should be publishable as-is, as plain text, without looking
180
+ like it's been marked up with tags or formatting instructions. While
181
+ Markdown's syntax has been influenced by several existing text-to-HTML
182
+ filters, the single biggest source of inspiration for Markdown's
183
+ syntax is the format of plain text email.</p>
184
+
185
+ <p>The best way to get a feel for Markdown's formatting syntax is simply
186
+ to look at a Markdown-formatted document. For example, you can view
187
+ the Markdown source for the article text on this page here:
188
+ <a href="http://daringfireball.net/projects/markdown/index.text">http://daringfireball.net/projects/markdown/index.text</a></p>
189
+
190
+ <p>(You can use this '.text' suffix trick to view the Markdown source for
191
+ the content of each of the pages in this section, e.g. the
192
+ <a href="/projects/markdown/syntax.text">Syntax</a> and <a href="/projects/markdown/license.text">License</a> pages.)</p>
193
+
194
+ <p>Markdown is free software, available under a BSD-style open source
195
+ license. See the <a href="/projects/markdown/license">License</a> page for more information.</p>
196
+
197
+ <h2>Discussion List <a id="discussion-list" /></h2>
198
+
199
+ <p>I've set up a public <a href="http://six.pairlist.net/mailman/listinfo/markdown-discuss">mailing list for discussion about Markdown</a>.
200
+ Any topic related to Markdown -- both its formatting syntax and
201
+ its software -- is fair game for discussion. Anyone who is interested
202
+ is welcome to join.</p>
203
+
204
+ <p>It's my hope that the mailing list will lead to good ideas for future
205
+ improvements to Markdown.</p>
206
+
207
+ <h2>Installation and Requirements <a id="install" /></h2>
208
+
209
+ <p>Markdown requires Perl 5.6.0 or later. Welcome to the 21st Century.
210
+ Markdown also requires the standard Perl library module <a href="http://search.cpan.org/dist/Digest-MD5/MD5.pm">Digest::MD5</a>, which is probably already installed on your server.</p>
211
+
212
+ <h3>Movable Type </h3>
213
+
214
+ <p>Markdown works with Movable Type version 2.6 or later (including
215
+ Movable Type 3.0).</p>
216
+
217
+ <ol>
218
+ <li><p>Copy the "Markdown.pl" file into your Movable Type "plugins"
219
+ directory. The "plugins" directory should be in the same directory
220
+ as "mt.cgi"; if the "plugins" directory doesn't already exist, use
221
+ your FTP program to create it. Your installation should look like
222
+ this:</p>
223
+
224
+ <pre><code>(mt home)/plugins/Markdown.pl
225
+ </code></pre></li>
226
+ <li><p>Once installed, Markdown will appear as an option in Movable Type's
227
+ Text Formatting pop-up menu. This is selectable on a per-post basis:</p>
228
+
229
+ <p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAToAAACYCAMAAABDP9U/AAAABGdBTUEAANbY
230
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAw
231
+ UExURf////n5+fT09PHx8e3t7eXl5d3d3dTU1MfHx7i4uKampoyMjHZ2dmBg
232
+ YElJSQUFBTRdP7YAABJHSURBVHja7F2JYqsgEPTgPv//b9/Mgkbz2jRtTHok
233
+ 5BABEcbZBXTBob7cF91Qx2Hj5ubUy33oAN3wgu4F3fdC93JXuxd0L+i+Hzrz
234
+ cte6F3Qv6F7QvaB7QfdyL+he0L2ge0F3nfPe4d9au/p/i/ug5Jegc3Dv5uvC
235
+ dTD4nIJxKeNjbcTffat7XmIbL53QxSWZD/6zJb8Anc1w8awkqRcNWSVErvtm
236
+ 690dkANKwQLkZEw6z/Bo5HiSbYneLtWKTlpRSufYfFjyS9Aljzx5MXqelnDa
237
+ XkQv16zvW3OKWtMuheJhSB0TfP7OtIsp+821t+23K9HGb11uHhbNdWyuLvlF
238
+ 1vkOX+alC9iQt3IZXcdJ9pMkaF4UFD9J2+QlxfUi8hJvq3YHl32MRopge2FT
239
+ zMIeKaNNISYAllkK3+i0EAGFhly21FeV/APokCm+NmSc29pgud+zi/S55J31
240
+ OGWSpP06t7Qd23bCBcx4V+g8y7nSrZUouiBeVsKmFDzqpT0BDDakjdy6tKS+
241
+ ruQXBVZ0HbOHxvA5hkapFonLl7vAeiqKfqndKW3Po7OvX8xwV2UHSnmRFSlG
242
+ Jx+9vRI2i/hEkEuCusA2BBG51OGqkl9kHeqvkW/TGDgXLt1GoQm5cB4U1uIq
243
+ rpplSbu/dtH1yoX7IWfZGvYLil/bOHp7JQSWgGuLhphBrjHBEVGRq5b6upJ/
244
+ 0Ex0RQAS+6b4AJNQPDqRUiuCIF5GQZdg1yGtSQt0oWuOduK76rqQOwKtGK1E
245
+ QsBeCYEOkmqa7pFit2YCDEhx1yZ/WPIPdF0XdhSD/1EaACt6ITcVALUqzURr
246
+ G8Buqmbf0raD5cLa3rb7nO7YKZZKAjfTisESuS4HrRKNUb6VPaalMVt0k16k
247
+ 5qqSXzWaYBba2Cb7dtfAa+my9BDId49eU5mUw7aDeud+XXdrMd7oLp389r3o
248
+ 60p+54FYbi6dfvj+ilHYxyW/9xhWGyfdGS1c+E1j2A9L/qfunEDBPdBdhs7+
249
+ LuiCdw90l6BDu3wPV+ruE4+7Pk79kEfYNno1jId/Jqu1VvjwqxWaruOgm38I
250
+ dEBughuP/qIzDef6H3qrh91M+Smsc9HO93BqUUipbXzK7o+xzgXzhlGZCdvN
251
+ f/5rHJU5vrEQO0/o/B9jnV+ho92s735Xdd/oandBn4EOH19rCegt+XDcfaif
252
+ wjqM4TurajC5zgtOc9vgp3dBn4COLuJ6YLRLX7+lcBDrJnRftVTlbAufXbHt
253
+ gTNvawxngdye+Gvs+N/R4r8EnV1Y52dfbbHKFuVLJAUBnS5Gi9/WUKu7Hrro
254
+ d+5o1hUKSRiGeLYdBhDd92r2wFEs0eNZoGx7StS0NuA3Rzf/RegwCMEH0Lha
255
+ TLXGV+1rtqla+Gy1tnpjEVQchnf62k8KOxdjOpR1pWboAjXXmoHiuGxRtRMg
256
+ 20gknneBSBfzEkgYhYGbo7v/osBqcdR1yUC1aVcNvgSt6TqNi2QYqmPWV7sY
257
+ fNh+D4SO1YWsgRQa1ZsBhlm20E2nyi+BI/Zd7dMflsBQy6gXroXSff3oWNzi
258
+ /wA6dl2NtBGmGkgroJsgoWCdBCichqEqJkl61acJbKKkNIGN4eAWFnIwQVDG
259
+ CTVctkOqDt9hAu/1Gjj4ws0uEMCzaVQrQenrR4PTa04XoHNrC+vbv60FjPPA
260
+ C6eBRFiUNVQF4QV0n9F1bGFxOUuQpjbGg1tY1N0N5A7o4fvWYWtLjaoptB5J
261
+ 6EpN4y5wanNx9NKQ0rccPeAc3a8vQyd9WF0dN6BJJOtwmdzsCgSWKrSGCf4Z
262
+ 0F3dJw6tK9z6dY69k0N1HdUTKovrrACCXbaxAZI1TrkGjsCasrkLxLEOqacG
263
+ yCjyvBw9aD0t/ksCq+dJRmKjbCYyhv8Mhm9A8Nz98E3Xutm3IZhLbSDmQzqU
264
+ dahVwQAFICRc7alvxxlatuBCSy2XSFt5N6LOu8AhhtjbZGhCeFMY1qMhsIv/
265
+ wmjCa6A2TqfvtN35+legOzkXDntcQdbNjRMetGuNoz1JX17byB7JprJS8W8D
266
+ pXuzJAySYl6P7lnki82Ei2a+w42TcXCn+7Ds+rh02G2ns9GEmvbbtyInpcfz
267
+ wFHtZhwO4/jZOyfQQfoeAxjT5FZmos025HjYTfcfc7+Oz6HL3V0O7rB7nT/m
268
+ fp2xzvk7uM1IAnvuwJv4P4Z1D3AHP/vwD32W8rIlfkH3zdChTx2ewh0HHXpb
269
+ 7PzO7abb/Nc/c5C++K2aVlacEODQ1XLzc7gG3a3YNdY15NSTQDcF17G7mXWC
270
+ HPv27knWigi2Y2dvZV2DTin9JNDJba/bJbaxriGnn0bXETp3K3YdOkHOPBN0
271
+ 7giBJXIzkTNPo+v8Edh16EA6DvffWYEnQj8U+5egOwI7QDeNjXTWvi2wmg8j
272
+ 5mz/kMB6we4A1k1NXK17Gzo+IQLrzOxqLXZyOTQsa7W/Gzp3O+umhXT+TeMR
273
+ XS1ENltbg4p8jlhsziqVORT9SwX2ENqRdZTXdmPzzRNN1fjqsg1VA0bnqjw7
274
+ rCWV+uzQCetIOuent3WdUhlUC3XiM1kH0Y1J14hT/1aBDeEg6FZ59e/oOtOt
275
+ N/wcaLCjppimVPRsfidyKpxod0OnGND19pUPItTbug5y6atRfCbpZycmJkoX
276
+ NBrmdwps7NDd1jvprGuq7m3L1vbcny2I1ssf97X5papuihuJNbeyrkM3PcdA
277
+ LB7STiysE1UXnuR+3bGs69A9xxg2ho2yu511bCXCcyA3x3gH1u0b8fYQ5J0W
278
+ /lLkf2nfj1JaLVxHOZR6kK47iHWqsy6EfaV6hc6quou9jJg6/d5N0hJoQe3D
279
+ HI/SdQvr3M2sW3rE5wKrl96HsWs/RJ/HXXB6k/69JNKZ1Eqm2l2X67G6zhzE
280
+ OvUmdjbTPs9uq7hC0mus+mRDrWl4rGng3iPbNERaX9N6tpnEby9AzLuMHgNd
281
+ PEhg51Mz8YbIKYxbiwM79NIxXnWUWkM4pG5DC0CnQWM3n2L6L9Ke1/YcTnLf
282
+ rJAX6X+MxG6hM3fQdTLyZ21cdaLLNQ2x8R9KTSoHNlSkEjAtsUYZpDVz9xk8
283
+ 1aZ4sGyWFMRrigU5WZdjNbbUrGbEI+eYZgTLvJ/HQScGau7GJvairmvKKvR7
284
+ S6nwlh0tkFHXSBN2L9MArAEtgSv1ISdZyIhXGTG4bxMFbBPYhKNdzVZz0hkQ
285
+ s8Bcx2RlspTT5lsE9m66jj+gJNoKFVexmIJUtKnnjbtUcwYwnCEWS9NhhI66
286
+ joGuqp4CEaGGUiyn9gBqBAPgWBJyr0FmPwb1KOh2/Tp7l35dV0kQWEGlAwTo
287
+ dNVzTiXMueD8oJ+BEFTRYVrEk7PvqsKRqqUQXVcMInnfhZPOnGFUygiuSc+c
288
+ 95Mf1ju5Rwv7Zl/WlGpnHXQqfDimi5c7eNBU/HPKKLmh5wEn04ObnDbGQGAE
289
+ 0XWzYWMzRU4w85zaM0FXgl/gWUmcIgXQjJ0h3ewTP6pfd6CuuzAQszJPUgHC
290
+ mmfVWIdfkmazcpYdWGnbdGMt8ww8GaaV3Nrr/RrxJCuTZzldITEg1wDobI1u
291
+ 7bk8QmQf0a9blAO6xBSm5QadSPLUtKHpN/RwASRqki4aqDUv9/fM2ovR7VDE
292
+ 6d5D1C1Qn/J+XDNxX113/L3tnUed/Oqjwe5v69f93Vud9+7X6T/qqI7zwazL
293
+ z+EiHLA7dAz7JNClFGMq5cW6r0AH8NCFOlLXXX92WazzzPe7sCsl3Id1fjDr
294
+ ecaR+uEUwLAh/uf7bdDVcGS/7qRIB3U6zzhwqdU9dGP8z/cLWefuwDozpC10
295
+ QG0cTbbDoLjulx4JmDY5TsMEX5yHwec55DCmjGtgzDCmH45d7gJ71Bi2Uw5S
296
+ 6LcMs2MKkzU5JEa4wUVAZ6aUJwPJjtyEIRid9RAQA4LGyf905pUSD9d1cdB2
297
+ S5o0hskb5zQXRR4BnWaYGpgSwjpG2SgbBoTaMGYHYZ9/MnRFVsptAnusrvPj
298
+ 4HZ6LdlxSM6kUccFugkEE+jSCl0ajAqj4vrTPxw66jqB7vgW1uxaTQFHcS3x
299
+ MazQDYATwmmTRdrRUmAhrh56MUqCnw2dYHeYrtu2sEnns9bURa4GPw+Q0wgP
300
+ WBfRaESPdgNYcRUzxw5NyhrC+uOh6yvVhkeOJtpy2vuWal1v+5cNxFI+Stc9
301
+ 3Rg2YSD2GsN+BbpYor+DrnuCm065pHDPZxN/9E6nqqXkFLw7sl/3lg3XX7FH
302
+ 3Hx4zykcYZr4hM8mjrN00p82iNXres86fGLyxHYq1cZm7zttie/6HFZXmpOY
303
+ ul2O0yxLYW98F5wYqtDiJ6+ZluXR9iXbED7q1vd5DnvQE7HLz2HbfNhY07QN
304
+ M//5LjlnOY9xs6QnDSjc249d7Zpj4MS+faGYy6+wOWkOl36eammmDnrmsnaq
305
+ GihbmlQUVJSWFX4ufvbgJ8oVUy2mwYoBG2dwJ0/TCB8zYrQsNSKTadvcWtrr
306
+ 6UzjPZVClVV3cbHgj0WNNdIOz/akkgsOKOp2Xefckf26dwSWk+pKxLiUU+wA
307
+ YLSm6lSMgjiBGRobTvtMKlevabyZDK0Sxeypykq8JcwJCYPEdIGFKNLartnr
308
+ aa85Da1UbjFKTlz9OFYbAJfY4S3TcJFLKvo2PfkI+7qmcqqtPgdOqQsR7KL1
309
+ 71wzKip6jqaJFlCAHbrm5IsCWUBBUVYZDPExaezSAG+NoQVtlUW1ZUljZGBD
310
+ wj91Ik0ZPS8NdR1T0w5P9aTMBRfA3txMHKjr3AVdxzWJUW5To0PdqLBANMgU
311
+ tZKuihsSoxKpEqHRaA8lKq5mjO4gbtiNONEpRvINfUljTWYGqj9GOskVMjtF
312
+ EFvTiA+6oU3DVcwFwlvdr7A5GauxNU+0XHXgHzzzNFWNuilZXdpMNdJ+cRJx
313
+ pXojQL6rSS4CrWiU1+bR9pgJ7YaitZ2ETVz4nGu5M3KCpM5DpDqjyR2S0Q5v
314
+ 6kk9LR7lZQS3zf0HbEareXpn9dcrF5z8WNdBRixtCGlgVw0ljDOzEyvcmglq
315
+ 9hmCRFNNMUpXS2+EJseRu7NhM7HGsN+R17m1fI8ARke0toWKhBpE6gBClp40
316
+ N3NQJGUuXKz/Jl0n0kro1I3QfaTraD4nE5vo7zb/CBObLq2b1ayYvDYDdHU2
317
+ fpNFj8SuU2+nAGmjZzHAm1tuyNgYpZbcSMGTRfNsmFTymfTtFsdknT2Gddfb
318
+ 16kvTAP70iElff3Yb9B1P2k+7F2Nig+bXrdh3ZOs6XTYpM7p2aA7mHXmiSaw
319
+ z4dNYD+tEPOMc/8PWufkieb++6NYp/pa9SGk1B6tlgcs+v9QR0OT9vQ6tiHs
320
+ UYt1LO1EiGl5Kl2Wz4/9fvKzWMLGeNyaTq1j18YTMaYVPJ6ufduJv+zpF73k
321
+ fiVuznDvuebXTBQacjEcJrCnlYl8hy7tDKo2m/fNrsr7qUqp/OcriEuWv+95
322
+ cC3IpT1yN65ft5FYz4siZkBigcabuqirVP8/E7UzdEp5B7rUopiieUo6AIb9
323
+ i+U/+qXlDeP/kc7eyrqVdgIdDTLEZrRBhrom/jaOqO52AUc9FfAsrWSW5S3Y
324
+ SFPLY9+UfnKxA7ch3a2sk9mEJ21H9IrUuUHI+pZuutwhFE9e9lo0fqXFNFPd
325
+ JXKTSnzlW6CLIqtA7kQ6d/Myp9O6uC6wQ86CXUkNv5IjcInciqEGiCW0XLAq
326
+ y25coROGCtw9jpHwNeS4za0WX3WS7ed/jXLxKNJt1iUm7axbXjxaOn5Cng4l
327
+ 0cm99IVAxp4uSrLcDpBAxqU1btm2g3PfPtyFlXLtddw3riS+W0gc4PX3LREB
328
+ +SMYuUHHM2daCMUGLaDp6UJL0w4Q6FLbSGFzPxaE3e0/+LO8RGq7su4R0K3Y
329
+ LS+rKnwEVrDl09Dctmg9xCPxDI+B8MnuuqGvQZ5LK2zuh6ChaIlK+rY3w/gd
330
+ 5w4Q2A12/VVfPlAEBQX6k+xSixFGOk524W70O+jky19kP+WUdANZ7LvfhduG
331
+ c7e/5WR9VYfW2rvTm9IEw+YJZ4H9K5vg3/oGn3L3gm49J35JPu8f/11co5w7
332
+ 5FUd4/qCGC5k5Y55ZR27x628bw4o/fc415096AUxw/paIppxrc6ff/x+z138
333
+ 9AvdduRZez8mho8OvdtndXZtI27VdQ07AW9Gtndw/t2dx7v1xbTmCNYN6/uw
334
+ JnlRsHV/1NkTcLe/XrGxrmMH9Hq+8eU+dKcX/zX0OnT+Lz6SmObl5d4j3458
335
+ 5EtOCR5VJ6Eb/64bjsDt//fDjv2drZ4vgP5TcK3fY3B7/9W6fni5F3Qv6H4L
336
+ dPoF3VXQvdwX3T8BBgCc7Itn/93VjwAAAABJRU5ErkJggg==
337
+ " alt="Screenshot of Movable Type 'Text Formatting' Menu" />
338
+
339
+ <p>Markdown translates your posts to HTML when you publish; the posts
340
+ themselves are stored in your MT database in Markdown format.</p></li>
341
+ <li><p>If you also install SmartyPants 1.5 (or later), Markdown will
342
+ offer a second text formatting option: "Markdown With
343
+ SmartyPants". This option is the same as the regular "Markdown"
344
+ formatter, except that it automatically uses SmartyPants to create
345
+ typographically correct curly quotes, em-dashes, and ellipses. See
346
+ the <a href="http://daringfireball.net/projects/smartypants/">SmartyPants web page</a> for more information.</p></li>
347
+ <li><p>To make Markdown (or "Markdown With SmartyPants") your default
348
+ text formatting option for new posts, go to Weblog Config:
349
+ Preferences.</p></li>
350
+ </ol>
351
+
352
+
353
+ <p>Note that by default, Markdown produces XHTML output. To configure
354
+ Markdown to produce HTML 4 output, see "Configuration", below.</p>
355
+
356
+ <h3>Blosxom </h3>
357
+
358
+ <p>Markdown works with Blosxom version 2.0 or later.</p>
359
+
360
+ <ol>
361
+ <li><p>Rename the "Markdown.pl" plug-in to "Markdown" (case is
362
+ important). Movable Type requires plug-ins to have a ".pl"
363
+ extension; Blosxom forbids it.</p></li>
364
+ <li><p>Copy the "Markdown" plug-in file to your Blosxom plug-ins folder.
365
+ If you're not sure where your Blosxom plug-ins folder is, see the
366
+ Blosxom documentation for information.</p></li>
367
+ <li><p>That's it. The entries in your weblog will now automatically be
368
+ processed by Markdown.</p></li>
369
+ <li><p>If you'd like to apply Markdown formatting only to certain
370
+ posts, rather than all of them, Markdown can optionally be used in
371
+ conjunction with Blosxom's <a href="http://www.blosxom.com/plugins/meta/meta.htm">Meta</a> plug-in. First, install the
372
+ Meta plug-in. Next, open the Markdown plug-in file in a text
373
+ editor, and set the configuration variable <code>$g_blosxom_use_meta</code>
374
+ to 1. Then, simply include a "<code>meta-markup: Markdown</code>" header line
375
+ at the top of each post you compose using Markdown.</p></li>
376
+ </ol>
377
+
378
+
379
+ <h3>BBEdit </h3>
380
+
381
+ <p>Markdown works with BBEdit 6.1 or later on Mac OS X. It also works
382
+ with BBEdit 5.1 or later and MacPerl 5.6.1 on Mac OS 8.6 or later. If
383
+ you're running Mac OS X 10.2 (Jaguar), you may need to install the
384
+ Perl module <a href="http://search.cpan.org/dist/Digest-MD5/MD5.pm">Digest::MD5</a> from CPAN; Digest::MD5 comes
385
+ pre-installed on Mac OS X 10.3 (Panther).</p>
386
+
387
+ <ol>
388
+ <li><p>Copy the "Markdown.pl" file to appropriate filters folder in your
389
+ "BBEdit Support" folder. On Mac OS X, this should be:</p>
390
+
391
+ <pre><code>BBEdit Support/Unix Support/Unix Filters/
392
+ </code></pre>
393
+
394
+ <p>See the BBEdit documentation for more details on the location of
395
+ these folders.</p>
396
+
397
+ <p>You can rename "Markdown.pl" to whatever you wish.</p></li>
398
+ <li><p>That's it. To use Markdown, select some text in a BBEdit document,
399
+ then choose Markdown from the Filters sub-menu in the "#!" menu, or
400
+ the Filters floating palette</p></li>
401
+ </ol>
402
+
403
+
404
+ <h2>Configuration <a id="configuration"></a></h2>
405
+
406
+ <p>By default, Markdown produces XHTML output for tags with empty elements.
407
+ E.g.:</p>
408
+
409
+ <pre><code>&lt;br /&gt;
410
+ </code></pre>
411
+
412
+ <p>Markdown can be configured to produce HTML-style tags; e.g.:</p>
413
+
414
+ <pre><code>&lt;br&gt;
415
+ </code></pre>
416
+
417
+ <h3>Movable Type </h3>
418
+
419
+ <p>You need to use a special <code>MTMarkdownOptions</code> container tag in each
420
+ Movable Type template where you want HTML 4-style output:</p>
421
+
422
+ <pre><code>&lt;MTMarkdownOptions output='html4'&gt;
423
+ ... put your entry content here ...
424
+ &lt;/MTMarkdownOptions&gt;
425
+ </code></pre>
426
+
427
+ <p>The easiest way to use MTMarkdownOptions is probably to put the
428
+ opening tag right after your <code>&lt;body&gt;</code> tag, and the closing tag right
429
+ before <code>&lt;/body&gt;</code>.</p>
430
+
431
+ <p>To suppress Markdown processing in a particular template, i.e. to
432
+ publish the raw Markdown-formatted text without translation into
433
+ (X)HTML, set the <code>output</code> attribute to 'raw':</p>
434
+
435
+ <pre><code>&lt;MTMarkdownOptions output='raw'&gt;
436
+ ... put your entry content here ...
437
+ &lt;/MTMarkdownOptions&gt;
438
+ </code></pre>
439
+
440
+ <h3>Command-Line </h3>
441
+
442
+ <p>Use the <code>--html4tags</code> command-line switch to produce HTML output from a
443
+ Unix-style command line. E.g.:</p>
444
+
445
+ <pre><code>% perl Markdown.pl --html4tags foo.text
446
+ </code></pre>
447
+
448
+ <p>Type <code>perldoc Markdown.pl</code>, or read the POD documentation within the
449
+ Markdown.pl source code for more information.</p>
450
+
451
+ <h2>Acknowledgements <a id="acknowledgements" /></h2>
452
+
453
+ <p><a href="http://www.aaronsw.com/">Aaron Swartz</a> deserves a tremendous amount of credit for helping to
454
+ design Markdown's formatting syntax. Markdown is <em>much</em> better thanks
455
+ to Aaron's ideas, feedback, and testing. Also, Aaron's <a href="http://www.aaronsw.com/2002/html2text/">html2text</a>
456
+ is a very handy (and free) utility for turning HTML into
457
+ Markdown-formatted plain text.</p>
458
+
459
+ <p><a href="http://bumppo.net/">Nathaniel Irons</a>, <a href="http://hivelogic.com/">Dan Benjamin</a>, <a href="http://waferbaby.com/">Daniel Bogan</a>, and <a href="http://pressedpants.com/">Jason Perkins</a>
460
+ also deserve thanks for their feedback.</p>
461
+
462
+ <p><a href="http://www.michelf.com/projects/php-markdown/">Michel Fortin</a> has ported Markdown to PHP; it's a splendid port, and highly recommended for anyone looking for a PHP implementation of Markdown.</p>
463
+
464
+ </div>
465
+
466
+ </body>
467
+ </html>