mdpreview 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1326 @@
1
+ var Markdown;
2
+
3
+ if (typeof exports === "object" && typeof require === "function") // we're in a CommonJS (e.g. Node.js) module
4
+ Markdown = exports;
5
+ else
6
+ Markdown = {};
7
+
8
+ // The following text is included for historical reasons, but should
9
+ // be taken with a pinch of salt; it's not all true anymore.
10
+
11
+ //
12
+ // Wherever possible, Showdown is a straight, line-by-line port
13
+ // of the Perl version of Markdown.
14
+ //
15
+ // This is not a normal parser design; it's basically just a
16
+ // series of string substitutions. It's hard to read and
17
+ // maintain this way, but keeping Showdown close to the original
18
+ // design makes it easier to port new features.
19
+ //
20
+ // More importantly, Showdown behaves like markdown.pl in most
21
+ // edge cases. So web applications can do client-side preview
22
+ // in Javascript, and then build identical HTML on the server.
23
+ //
24
+ // This port needs the new RegExp functionality of ECMA 262,
25
+ // 3rd Edition (i.e. Javascript 1.5). Most modern web browsers
26
+ // should do fine. Even with the new regular expression features,
27
+ // We do a lot of work to emulate Perl's regex functionality.
28
+ // The tricky changes in this file mostly have the "attacklab:"
29
+ // label. Major or self-explanatory changes don't.
30
+ //
31
+ // Smart diff tools like Araxis Merge will be able to match up
32
+ // this file with markdown.pl in a useful way. A little tweaking
33
+ // helps: in a copy of markdown.pl, replace "#" with "//" and
34
+ // replace "$text" with "text". Be sure to ignore whitespace
35
+ // and line endings.
36
+ //
37
+
38
+
39
+ //
40
+ // Usage:
41
+ //
42
+ // var text = "Markdown *rocks*.";
43
+ //
44
+ // var converter = new Markdown.Converter();
45
+ // var html = converter.makeHtml(text);
46
+ //
47
+ // alert(html);
48
+ //
49
+ // Note: move the sample code to the bottom of this
50
+ // file before uncommenting it.
51
+ //
52
+
53
+ (function () {
54
+
55
+ function identity(x) { return x; }
56
+ function returnFalse(x) { return false; }
57
+
58
+ function HookCollection() { }
59
+
60
+ HookCollection.prototype = {
61
+
62
+ chain: function (hookname, func) {
63
+ var original = this[hookname];
64
+ if (!original)
65
+ throw new Error("unknown hook " + hookname);
66
+
67
+ if (original === identity)
68
+ this[hookname] = func;
69
+ else
70
+ this[hookname] = function (x) { return func(original(x)); }
71
+ },
72
+ set: function (hookname, func) {
73
+ if (!this[hookname])
74
+ throw new Error("unknown hook " + hookname);
75
+ this[hookname] = func;
76
+ },
77
+ addNoop: function (hookname) {
78
+ this[hookname] = identity;
79
+ },
80
+ addFalse: function (hookname) {
81
+ this[hookname] = returnFalse;
82
+ }
83
+ };
84
+
85
+ Markdown.HookCollection = HookCollection;
86
+
87
+ // g_urls and g_titles allow arbitrary user-entered strings as keys. This
88
+ // caused an exception (and hence stopped the rendering) when the user entered
89
+ // e.g. [push] or [__proto__]. Adding a prefix to the actual key prevents this
90
+ // (since no builtin property starts with "s_"). See
91
+ // http://meta.stackoverflow.com/questions/64655/strange-wmd-bug
92
+ // (granted, switching from Array() to Object() alone would have left only __proto__
93
+ // to be a problem)
94
+ function SaveHash() { }
95
+ SaveHash.prototype = {
96
+ set: function (key, value) {
97
+ this["s_" + key] = value;
98
+ },
99
+ get: function (key) {
100
+ return this["s_" + key];
101
+ }
102
+ };
103
+
104
+ Markdown.Converter = function () {
105
+ var pluginHooks = this.hooks = new HookCollection();
106
+ pluginHooks.addNoop("plainLinkText"); // given a URL that was encountered by itself (without markup), should return the link text that's to be given to this link
107
+ pluginHooks.addNoop("preConversion"); // called with the orignal text as given to makeHtml. The result of this plugin hook is the actual markdown source that will be cooked
108
+ pluginHooks.addNoop("postConversion"); // called with the final cooked HTML code. The result of this plugin hook is the actual output of makeHtml
109
+
110
+ //
111
+ // Private state of the converter instance:
112
+ //
113
+
114
+ // Global hashes, used by various utility routines
115
+ var g_urls;
116
+ var g_titles;
117
+ var g_html_blocks;
118
+
119
+ // Used to track when we're inside an ordered or unordered list
120
+ // (see _ProcessListItems() for details):
121
+ var g_list_level;
122
+
123
+ this.makeHtml = function (text) {
124
+
125
+ //
126
+ // Main function. The order in which other subs are called here is
127
+ // essential. Link and image substitutions need to happen before
128
+ // _EscapeSpecialCharsWithinTagAttributes(), so that any *'s or _'s in the <a>
129
+ // and <img> tags get encoded.
130
+ //
131
+
132
+ // This will only happen if makeHtml on the same converter instance is called from a plugin hook.
133
+ // Don't do that.
134
+ if (g_urls)
135
+ throw new Error("Recursive call to converter.makeHtml");
136
+
137
+ // Create the private state objects.
138
+ g_urls = new SaveHash();
139
+ g_titles = new SaveHash();
140
+ g_html_blocks = [];
141
+ g_list_level = 0;
142
+
143
+ text = pluginHooks.preConversion(text);
144
+
145
+ // attacklab: Replace ~ with ~T
146
+ // This lets us use tilde as an escape char to avoid md5 hashes
147
+ // The choice of character is arbitray; anything that isn't
148
+ // magic in Markdown will work.
149
+ text = text.replace(/~/g, "~T");
150
+
151
+ // attacklab: Replace $ with ~D
152
+ // RegExp interprets $ as a special character
153
+ // when it's in a replacement string
154
+ text = text.replace(/\$/g, "~D");
155
+
156
+ // Standardize line endings
157
+ text = text.replace(/\r\n/g, "\n"); // DOS to Unix
158
+ text = text.replace(/\r/g, "\n"); // Mac to Unix
159
+
160
+ // Make sure text begins and ends with a couple of newlines:
161
+ text = "\n\n" + text + "\n\n";
162
+
163
+ // Convert all tabs to spaces.
164
+ text = _Detab(text);
165
+
166
+ // Strip any lines consisting only of spaces and tabs.
167
+ // This makes subsequent regexen easier to write, because we can
168
+ // match consecutive blank lines with /\n+/ instead of something
169
+ // contorted like /[ \t]*\n+/ .
170
+ text = text.replace(/^[ \t]+$/mg, "");
171
+
172
+ // Turn block-level HTML blocks into hash entries
173
+ text = _HashHTMLBlocks(text);
174
+
175
+ // Strip link definitions, store in hashes.
176
+ text = _StripLinkDefinitions(text);
177
+
178
+ text = _RunBlockGamut(text);
179
+
180
+ text = _UnescapeSpecialChars(text);
181
+
182
+ // attacklab: Restore dollar signs
183
+ text = text.replace(/~D/g, "$$");
184
+
185
+ // attacklab: Restore tildes
186
+ text = text.replace(/~T/g, "~");
187
+
188
+ text = pluginHooks.postConversion(text);
189
+
190
+ g_html_blocks = g_titles = g_urls = null;
191
+
192
+ return text;
193
+ };
194
+
195
+ function _StripLinkDefinitions(text) {
196
+ //
197
+ // Strips link definitions from text, stores the URLs and titles in
198
+ // hash references.
199
+ //
200
+
201
+ // Link defs are in the form: ^[id]: url "optional title"
202
+
203
+ /*
204
+ text = text.replace(/
205
+ ^[ ]{0,3}\[(.+)\]: // id = $1 attacklab: g_tab_width - 1
206
+ [ \t]*
207
+ \n? // maybe *one* newline
208
+ [ \t]*
209
+ <?(\S+?)>? // url = $2
210
+ (?=\s|$) // lookahead for whitespace instead of the lookbehind removed below
211
+ [ \t]*
212
+ \n? // maybe one newline
213
+ [ \t]*
214
+ ( // (potential) title = $3
215
+ (\n*) // any lines skipped = $4 attacklab: lookbehind removed
216
+ [ \t]+
217
+ ["(]
218
+ (.+?) // title = $5
219
+ [")]
220
+ [ \t]*
221
+ )? // title is optional
222
+ (?:\n+|$)
223
+ /gm, function(){...});
224
+ */
225
+
226
+ text = text.replace(/^[ ]{0,3}\[(.+)\]:[ \t]*\n?[ \t]*<?(\S+?)>?(?=\s|$)[ \t]*\n?[ \t]*((\n*)["(](.+?)[")][ \t]*)?(?:\n+)/gm,
227
+ function (wholeMatch, m1, m2, m3, m4, m5) {
228
+ m1 = m1.toLowerCase();
229
+ g_urls.set(m1, _EncodeAmpsAndAngles(m2)); // Link IDs are case-insensitive
230
+ if (m4) {
231
+ // Oops, found blank lines, so it's not a title.
232
+ // Put back the parenthetical statement we stole.
233
+ return m3;
234
+ } else if (m5) {
235
+ g_titles.set(m1, m5.replace(/"/g, "&quot;"));
236
+ }
237
+
238
+ // Completely remove the definition from the text
239
+ return "";
240
+ }
241
+ );
242
+
243
+ return text;
244
+ }
245
+
246
+ function _HashHTMLBlocks(text) {
247
+
248
+ // Hashify HTML blocks:
249
+ // We only want to do this for block-level HTML tags, such as headers,
250
+ // lists, and tables. That's because we still want to wrap <p>s around
251
+ // "paragraphs" that are wrapped in non-block-level tags, such as anchors,
252
+ // phrase emphasis, and spans. The list of tags we're looking for is
253
+ // hard-coded:
254
+ var block_tags_a = "p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del"
255
+ var block_tags_b = "p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math"
256
+
257
+ // First, look for nested blocks, e.g.:
258
+ // <div>
259
+ // <div>
260
+ // tags for inner block must be indented.
261
+ // </div>
262
+ // </div>
263
+ //
264
+ // The outermost tags must start at the left margin for this to match, and
265
+ // the inner nested divs must be indented.
266
+ // We need to do this before the next, more liberal match, because the next
267
+ // match will start at the first `<div>` and stop at the first `</div>`.
268
+
269
+ // attacklab: This regex can be expensive when it fails.
270
+
271
+ /*
272
+ text = text.replace(/
273
+ ( // save in $1
274
+ ^ // start of line (with /m)
275
+ <($block_tags_a) // start tag = $2
276
+ \b // word break
277
+ // attacklab: hack around khtml/pcre bug...
278
+ [^\r]*?\n // any number of lines, minimally matching
279
+ </\2> // the matching end tag
280
+ [ \t]* // trailing spaces/tabs
281
+ (?=\n+) // followed by a newline
282
+ ) // attacklab: there are sentinel newlines at end of document
283
+ /gm,function(){...}};
284
+ */
285
+ text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del)\b[^\r]*?\n<\/\2>[ \t]*(?=\n+))/gm, hashElement);
286
+
287
+ //
288
+ // Now match more liberally, simply from `\n<tag>` to `</tag>\n`
289
+ //
290
+
291
+ /*
292
+ text = text.replace(/
293
+ ( // save in $1
294
+ ^ // start of line (with /m)
295
+ <($block_tags_b) // start tag = $2
296
+ \b // word break
297
+ // attacklab: hack around khtml/pcre bug...
298
+ [^\r]*? // any number of lines, minimally matching
299
+ .*</\2> // the matching end tag
300
+ [ \t]* // trailing spaces/tabs
301
+ (?=\n+) // followed by a newline
302
+ ) // attacklab: there are sentinel newlines at end of document
303
+ /gm,function(){...}};
304
+ */
305
+ text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?.*<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
306
+
307
+ // Special case just for <hr />. It was easier to make a special case than
308
+ // to make the other regex more complicated.
309
+
310
+ /*
311
+ text = text.replace(/
312
+ \n // Starting after a blank line
313
+ [ ]{0,3}
314
+ ( // save in $1
315
+ (<(hr) // start tag = $2
316
+ \b // word break
317
+ ([^<>])*?
318
+ \/?>) // the matching end tag
319
+ [ \t]*
320
+ (?=\n{2,}) // followed by a blank line
321
+ )
322
+ /g,hashElement);
323
+ */
324
+ text = text.replace(/\n[ ]{0,3}((<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g, hashElement);
325
+
326
+ // Special case for standalone HTML comments:
327
+
328
+ /*
329
+ text = text.replace(/
330
+ \n\n // Starting after a blank line
331
+ [ ]{0,3} // attacklab: g_tab_width - 1
332
+ ( // save in $1
333
+ <!
334
+ (--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--) // see http://www.w3.org/TR/html-markup/syntax.html#comments and http://meta.stackoverflow.com/q/95256
335
+ >
336
+ [ \t]*
337
+ (?=\n{2,}) // followed by a blank line
338
+ )
339
+ /g,hashElement);
340
+ */
341
+ text = text.replace(/\n\n[ ]{0,3}(<!(--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>[ \t]*(?=\n{2,}))/g, hashElement);
342
+
343
+ // PHP and ASP-style processor instructions (<?...?> and <%...%>)
344
+
345
+ /*
346
+ text = text.replace(/
347
+ (?:
348
+ \n\n // Starting after a blank line
349
+ )
350
+ ( // save in $1
351
+ [ ]{0,3} // attacklab: g_tab_width - 1
352
+ (?:
353
+ <([?%]) // $2
354
+ [^\r]*?
355
+ \2>
356
+ )
357
+ [ \t]*
358
+ (?=\n{2,}) // followed by a blank line
359
+ )
360
+ /g,hashElement);
361
+ */
362
+ text = text.replace(/(?:\n\n)([ ]{0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g, hashElement);
363
+
364
+ return text;
365
+ }
366
+
367
+ function hashElement(wholeMatch, m1) {
368
+ var blockText = m1;
369
+
370
+ // Undo double lines
371
+ blockText = blockText.replace(/^\n+/, "");
372
+
373
+ // strip trailing blank lines
374
+ blockText = blockText.replace(/\n+$/g, "");
375
+
376
+ // Replace the element text with a marker ("~KxK" where x is its key)
377
+ blockText = "\n\n~K" + (g_html_blocks.push(blockText) - 1) + "K\n\n";
378
+
379
+ return blockText;
380
+ }
381
+
382
+ function _RunBlockGamut(text, doNotUnhash) {
383
+ //
384
+ // These are all the transformations that form block-level
385
+ // tags like paragraphs, headers, and list items.
386
+ //
387
+ text = _DoHeaders(text);
388
+
389
+ // Do Horizontal Rules:
390
+ var replacement = "<hr />\n";
391
+ text = text.replace(/^[ ]{0,2}([ ]?\*[ ]?){3,}[ \t]*$/gm, replacement);
392
+ text = text.replace(/^[ ]{0,2}([ ]?-[ ]?){3,}[ \t]*$/gm, replacement);
393
+ text = text.replace(/^[ ]{0,2}([ ]?_[ ]?){3,}[ \t]*$/gm, replacement);
394
+
395
+ text = _DoLists(text);
396
+ text = _DoCodeBlocks(text);
397
+ text = _DoBlockQuotes(text);
398
+
399
+ // We already ran _HashHTMLBlocks() before, in Markdown(), but that
400
+ // was to escape raw HTML in the original Markdown source. This time,
401
+ // we're escaping the markup we've just created, so that we don't wrap
402
+ // <p> tags around block-level tags.
403
+ text = _HashHTMLBlocks(text);
404
+ text = _FormParagraphs(text, doNotUnhash);
405
+
406
+ return text;
407
+ }
408
+
409
+ function _RunSpanGamut(text) {
410
+ //
411
+ // These are all the transformations that occur *within* block-level
412
+ // tags like paragraphs, headers, and list items.
413
+ //
414
+
415
+ text = _DoCodeSpans(text);
416
+ text = _EscapeSpecialCharsWithinTagAttributes(text);
417
+ text = _EncodeBackslashEscapes(text);
418
+
419
+ // Process anchor and image tags. Images must come first,
420
+ // because ![foo][f] looks like an anchor.
421
+ text = _DoImages(text);
422
+ text = _DoAnchors(text);
423
+
424
+ // Make links out of things like `<http://example.com/>`
425
+ // Must come after _DoAnchors(), because you can use < and >
426
+ // delimiters in inline links like [this](<url>).
427
+ text = _DoAutoLinks(text);
428
+
429
+ text = text.replace(/~P/g, "://"); // put in place to prevent autolinking; reset now
430
+
431
+ text = _EncodeAmpsAndAngles(text);
432
+ text = _DoItalicsAndBold(text);
433
+
434
+ // Do hard breaks:
435
+ text = text.replace(/ +\n/g, " <br>\n");
436
+
437
+ return text;
438
+ }
439
+
440
+ function _EscapeSpecialCharsWithinTagAttributes(text) {
441
+ //
442
+ // Within tags -- meaning between < and > -- encode [\ ` * _] so they
443
+ // don't conflict with their use in Markdown for code, italics and strong.
444
+ //
445
+
446
+ // Build a regex to find HTML tags and comments. See Friedl's
447
+ // "Mastering Regular Expressions", 2nd Ed., pp. 200-201.
448
+
449
+ // SE: changed the comment part of the regex
450
+
451
+ var regex = /(<[a-z\/!$]("[^"]*"|'[^']*'|[^'">])*>|<!(--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>)/gi;
452
+
453
+ text = text.replace(regex, function (wholeMatch) {
454
+ var tag = wholeMatch.replace(/(.)<\/?code>(?=.)/g, "$1`");
455
+ tag = escapeCharacters(tag, wholeMatch.charAt(1) == "!" ? "\\`*_/" : "\\`*_"); // also escape slashes in comments to prevent autolinking there -- http://meta.stackoverflow.com/questions/95987
456
+ return tag;
457
+ });
458
+
459
+ return text;
460
+ }
461
+
462
+ function _DoAnchors(text) {
463
+ //
464
+ // Turn Markdown link shortcuts into XHTML <a> tags.
465
+ //
466
+ //
467
+ // First, handle reference-style links: [link text] [id]
468
+ //
469
+
470
+ /*
471
+ text = text.replace(/
472
+ ( // wrap whole match in $1
473
+ \[
474
+ (
475
+ (?:
476
+ \[[^\]]*\] // allow brackets nested one level
477
+ |
478
+ [^\[] // or anything else
479
+ )*
480
+ )
481
+ \]
482
+
483
+ [ ]? // one optional space
484
+ (?:\n[ ]*)? // one optional newline followed by spaces
485
+
486
+ \[
487
+ (.*?) // id = $3
488
+ \]
489
+ )
490
+ ()()()() // pad remaining backreferences
491
+ /g, writeAnchorTag);
492
+ */
493
+ text = text.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g, writeAnchorTag);
494
+
495
+ //
496
+ // Next, inline-style links: [link text](url "optional title")
497
+ //
498
+
499
+ /*
500
+ text = text.replace(/
501
+ ( // wrap whole match in $1
502
+ \[
503
+ (
504
+ (?:
505
+ \[[^\]]*\] // allow brackets nested one level
506
+ |
507
+ [^\[\]] // or anything else
508
+ )*
509
+ )
510
+ \]
511
+ \( // literal paren
512
+ [ \t]*
513
+ () // no id, so leave $3 empty
514
+ <?( // href = $4
515
+ (?:
516
+ \([^)]*\) // allow one level of (correctly nested) parens (think MSDN)
517
+ |
518
+ [^()]
519
+ )*?
520
+ )>?
521
+ [ \t]*
522
+ ( // $5
523
+ (['"]) // quote char = $6
524
+ (.*?) // Title = $7
525
+ \6 // matching quote
526
+ [ \t]* // ignore any spaces/tabs between closing quote and )
527
+ )? // title is optional
528
+ \)
529
+ )
530
+ /g, writeAnchorTag);
531
+ */
532
+
533
+ text = text.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\]\([ \t]*()<?((?:\([^)]*\)|[^()])*?)>?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g, writeAnchorTag);
534
+
535
+ //
536
+ // Last, handle reference-style shortcuts: [link text]
537
+ // These must come last in case you've also got [link test][1]
538
+ // or [link test](/foo)
539
+ //
540
+
541
+ /*
542
+ text = text.replace(/
543
+ ( // wrap whole match in $1
544
+ \[
545
+ ([^\[\]]+) // link text = $2; can't contain '[' or ']'
546
+ \]
547
+ )
548
+ ()()()()() // pad rest of backreferences
549
+ /g, writeAnchorTag);
550
+ */
551
+ text = text.replace(/(\[([^\[\]]+)\])()()()()()/g, writeAnchorTag);
552
+
553
+ return text;
554
+ }
555
+
556
+ function writeAnchorTag(wholeMatch, m1, m2, m3, m4, m5, m6, m7) {
557
+ if (m7 == undefined) m7 = "";
558
+ var whole_match = m1;
559
+ var link_text = m2.replace(/:\/\//g, "~P"); // to prevent auto-linking withing the link. will be converted back after the auto-linker runs
560
+ var link_id = m3.toLowerCase();
561
+ var url = m4;
562
+ var title = m7;
563
+
564
+ if (url == "") {
565
+ if (link_id == "") {
566
+ // lower-case and turn embedded newlines into spaces
567
+ link_id = link_text.toLowerCase().replace(/ ?\n/g, " ");
568
+ }
569
+ url = "#" + link_id;
570
+
571
+ if (g_urls.get(link_id) != undefined) {
572
+ url = g_urls.get(link_id);
573
+ if (g_titles.get(link_id) != undefined) {
574
+ title = g_titles.get(link_id);
575
+ }
576
+ }
577
+ else {
578
+ if (whole_match.search(/\(\s*\)$/m) > -1) {
579
+ // Special case for explicit empty url
580
+ url = "";
581
+ } else {
582
+ return whole_match;
583
+ }
584
+ }
585
+ }
586
+ url = encodeProblemUrlChars(url);
587
+ url = escapeCharacters(url, "*_");
588
+ var result = "<a href=\"" + url + "\"";
589
+
590
+ if (title != "") {
591
+ title = title.replace(/"/g, "&quot;");
592
+ title = escapeCharacters(title, "*_");
593
+ result += " title=\"" + title + "\"";
594
+ }
595
+
596
+ result += ">" + link_text + "</a>";
597
+
598
+ return result;
599
+ }
600
+
601
+ function _DoImages(text) {
602
+ //
603
+ // Turn Markdown image shortcuts into <img> tags.
604
+ //
605
+
606
+ //
607
+ // First, handle reference-style labeled images: ![alt text][id]
608
+ //
609
+
610
+ /*
611
+ text = text.replace(/
612
+ ( // wrap whole match in $1
613
+ !\[
614
+ (.*?) // alt text = $2
615
+ \]
616
+
617
+ [ ]? // one optional space
618
+ (?:\n[ ]*)? // one optional newline followed by spaces
619
+
620
+ \[
621
+ (.*?) // id = $3
622
+ \]
623
+ )
624
+ ()()()() // pad rest of backreferences
625
+ /g, writeImageTag);
626
+ */
627
+ text = text.replace(/(!\[(.*?)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g, writeImageTag);
628
+
629
+ //
630
+ // Next, handle inline images: ![alt text](url "optional title")
631
+ // Don't forget: encode * and _
632
+
633
+ /*
634
+ text = text.replace(/
635
+ ( // wrap whole match in $1
636
+ !\[
637
+ (.*?) // alt text = $2
638
+ \]
639
+ \s? // One optional whitespace character
640
+ \( // literal paren
641
+ [ \t]*
642
+ () // no id, so leave $3 empty
643
+ <?(\S+?)>? // src url = $4
644
+ [ \t]*
645
+ ( // $5
646
+ (['"]) // quote char = $6
647
+ (.*?) // title = $7
648
+ \6 // matching quote
649
+ [ \t]*
650
+ )? // title is optional
651
+ \)
652
+ )
653
+ /g, writeImageTag);
654
+ */
655
+ text = text.replace(/(!\[(.*?)\]\s?\([ \t]*()<?(\S+?)>?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g, writeImageTag);
656
+
657
+ return text;
658
+ }
659
+
660
+ function writeImageTag(wholeMatch, m1, m2, m3, m4, m5, m6, m7) {
661
+ var whole_match = m1;
662
+ var alt_text = m2;
663
+ var link_id = m3.toLowerCase();
664
+ var url = m4;
665
+ var title = m7;
666
+
667
+ if (!title) title = "";
668
+
669
+ if (url == "") {
670
+ if (link_id == "") {
671
+ // lower-case and turn embedded newlines into spaces
672
+ link_id = alt_text.toLowerCase().replace(/ ?\n/g, " ");
673
+ }
674
+ url = "#" + link_id;
675
+
676
+ if (g_urls.get(link_id) != undefined) {
677
+ url = g_urls.get(link_id);
678
+ if (g_titles.get(link_id) != undefined) {
679
+ title = g_titles.get(link_id);
680
+ }
681
+ }
682
+ else {
683
+ return whole_match;
684
+ }
685
+ }
686
+
687
+ alt_text = escapeCharacters(alt_text.replace(/"/g, "&quot;"), "*_[]()");
688
+ url = escapeCharacters(url, "*_");
689
+ var result = "<img src=\"" + url + "\" alt=\"" + alt_text + "\"";
690
+
691
+ // attacklab: Markdown.pl adds empty title attributes to images.
692
+ // Replicate this bug.
693
+
694
+ //if (title != "") {
695
+ title = title.replace(/"/g, "&quot;");
696
+ title = escapeCharacters(title, "*_");
697
+ result += " title=\"" + title + "\"";
698
+ //}
699
+
700
+ result += " />";
701
+
702
+ return result;
703
+ }
704
+
705
+ function _DoHeaders(text) {
706
+
707
+ // Setext-style headers:
708
+ // Header 1
709
+ // ========
710
+ //
711
+ // Header 2
712
+ // --------
713
+ //
714
+ text = text.replace(/^(.+)[ \t]*\n=+[ \t]*\n+/gm,
715
+ function (wholeMatch, m1) { return "<h1>" + _RunSpanGamut(m1) + "</h1>\n\n"; }
716
+ );
717
+
718
+ text = text.replace(/^(.+)[ \t]*\n-+[ \t]*\n+/gm,
719
+ function (matchFound, m1) { return "<h2>" + _RunSpanGamut(m1) + "</h2>\n\n"; }
720
+ );
721
+
722
+ // atx-style headers:
723
+ // # Header 1
724
+ // ## Header 2
725
+ // ## Header 2 with closing hashes ##
726
+ // ...
727
+ // ###### Header 6
728
+ //
729
+
730
+ /*
731
+ text = text.replace(/
732
+ ^(\#{1,6}) // $1 = string of #'s
733
+ [ \t]*
734
+ (.+?) // $2 = Header text
735
+ [ \t]*
736
+ \#* // optional closing #'s (not counted)
737
+ \n+
738
+ /gm, function() {...});
739
+ */
740
+
741
+ text = text.replace(/^(\#{1,6})[ \t]*(.+?)[ \t]*\#*\n+/gm,
742
+ function (wholeMatch, m1, m2) {
743
+ var h_level = m1.length;
744
+ return "<h" + h_level + ">" + _RunSpanGamut(m2) + "</h" + h_level + ">\n\n";
745
+ }
746
+ );
747
+
748
+ return text;
749
+ }
750
+
751
+ function _DoLists(text) {
752
+ //
753
+ // Form HTML ordered (numbered) and unordered (bulleted) lists.
754
+ //
755
+
756
+ // attacklab: add sentinel to hack around khtml/safari bug:
757
+ // http://bugs.webkit.org/show_bug.cgi?id=11231
758
+ text += "~0";
759
+
760
+ // Re-usable pattern to match any entirel ul or ol list:
761
+
762
+ /*
763
+ var whole_list = /
764
+ ( // $1 = whole list
765
+ ( // $2
766
+ [ ]{0,3} // attacklab: g_tab_width - 1
767
+ ([*+-]|\d+[.]) // $3 = first list item marker
768
+ [ \t]+
769
+ )
770
+ [^\r]+?
771
+ ( // $4
772
+ ~0 // sentinel for workaround; should be $
773
+ |
774
+ \n{2,}
775
+ (?=\S)
776
+ (?! // Negative lookahead for another list item marker
777
+ [ \t]*
778
+ (?:[*+-]|\d+[.])[ \t]+
779
+ )
780
+ )
781
+ )
782
+ /g
783
+ */
784
+ var whole_list = /^(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm;
785
+
786
+ if (g_list_level) {
787
+ text = text.replace(whole_list, function (wholeMatch, m1, m2) {
788
+ var list = m1;
789
+ var list_type = (m2.search(/[*+-]/g) > -1) ? "ul" : "ol";
790
+
791
+ var result = _ProcessListItems(list, list_type);
792
+
793
+ // Trim any trailing whitespace, to put the closing `</$list_type>`
794
+ // up on the preceding line, to get it past the current stupid
795
+ // HTML block parser. This is a hack to work around the terrible
796
+ // hack that is the HTML block parser.
797
+ result = result.replace(/\s+$/, "");
798
+ result = "<" + list_type + ">" + result + "</" + list_type + ">\n";
799
+ return result;
800
+ });
801
+ } else {
802
+ whole_list = /(\n\n|^\n?)(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/g;
803
+ text = text.replace(whole_list, function (wholeMatch, m1, m2, m3) {
804
+ var runup = m1;
805
+ var list = m2;
806
+
807
+ var list_type = (m3.search(/[*+-]/g) > -1) ? "ul" : "ol";
808
+ var result = _ProcessListItems(list, list_type);
809
+ result = runup + "<" + list_type + ">\n" + result + "</" + list_type + ">\n";
810
+ return result;
811
+ });
812
+ }
813
+
814
+ // attacklab: strip sentinel
815
+ text = text.replace(/~0/, "");
816
+
817
+ return text;
818
+ }
819
+
820
+ var _listItemMarkers = { ol: "\\d+[.]", ul: "[*+-]" };
821
+
822
+ function _ProcessListItems(list_str, list_type) {
823
+ //
824
+ // Process the contents of a single ordered or unordered list, splitting it
825
+ // into individual list items.
826
+ //
827
+ // list_type is either "ul" or "ol".
828
+
829
+ // The $g_list_level global keeps track of when we're inside a list.
830
+ // Each time we enter a list, we increment it; when we leave a list,
831
+ // we decrement. If it's zero, we're not in a list anymore.
832
+ //
833
+ // We do this because when we're not inside a list, we want to treat
834
+ // something like this:
835
+ //
836
+ // I recommend upgrading to version
837
+ // 8. Oops, now this line is treated
838
+ // as a sub-list.
839
+ //
840
+ // As a single paragraph, despite the fact that the second line starts
841
+ // with a digit-period-space sequence.
842
+ //
843
+ // Whereas when we're inside a list (or sub-list), that line will be
844
+ // treated as the start of a sub-list. What a kludge, huh? This is
845
+ // an aspect of Markdown's syntax that's hard to parse perfectly
846
+ // without resorting to mind-reading. Perhaps the solution is to
847
+ // change the syntax rules such that sub-lists must start with a
848
+ // starting cardinal number; e.g. "1." or "a.".
849
+
850
+ g_list_level++;
851
+
852
+ // trim trailing blank lines:
853
+ list_str = list_str.replace(/\n{2,}$/, "\n");
854
+
855
+ // attacklab: add sentinel to emulate \z
856
+ list_str += "~0";
857
+
858
+ // In the original attacklab showdown, list_type was not given to this function, and anything
859
+ // that matched /[*+-]|\d+[.]/ would just create the next <li>, causing this mismatch:
860
+ //
861
+ // Markdown rendered by WMD rendered by MarkdownSharp
862
+ // ------------------------------------------------------------------
863
+ // 1. first 1. first 1. first
864
+ // 2. second 2. second 2. second
865
+ // - third 3. third * third
866
+ //
867
+ // We changed this to behave identical to MarkdownSharp. This is the constructed RegEx,
868
+ // with {MARKER} being one of \d+[.] or [*+-], depending on list_type:
869
+
870
+ /*
871
+ list_str = list_str.replace(/
872
+ (^[ \t]*) // leading whitespace = $1
873
+ ({MARKER}) [ \t]+ // list marker = $2
874
+ ([^\r]+? // list item text = $3
875
+ (\n+)
876
+ )
877
+ (?=
878
+ (~0 | \2 ({MARKER}) [ \t]+)
879
+ )
880
+ /gm, function(){...});
881
+ */
882
+
883
+ var marker = _listItemMarkers[list_type];
884
+ var re = new RegExp("(^[ \\t]*)(" + marker + ")[ \\t]+([^\\r]+?(\\n+))(?=(~0|\\1(" + marker + ")[ \\t]+))", "gm");
885
+ var last_item_had_a_double_newline = false;
886
+ list_str = list_str.replace(re,
887
+ function (wholeMatch, m1, m2, m3) {
888
+ var item = m3;
889
+ var leading_space = m1;
890
+ var ends_with_double_newline = /\n\n$/.test(item);
891
+ var contains_double_newline = ends_with_double_newline || item.search(/\n{2,}/) > -1;
892
+
893
+ if (contains_double_newline || last_item_had_a_double_newline) {
894
+ item = _RunBlockGamut(_Outdent(item), /* doNotUnhash = */true);
895
+ }
896
+ else {
897
+ // Recursion for sub-lists:
898
+ item = _DoLists(_Outdent(item));
899
+ item = item.replace(/\n$/, ""); // chomp(item)
900
+ item = _RunSpanGamut(item);
901
+ }
902
+ last_item_had_a_double_newline = ends_with_double_newline;
903
+ return "<li>" + item + "</li>\n";
904
+ }
905
+ );
906
+
907
+ // attacklab: strip sentinel
908
+ list_str = list_str.replace(/~0/g, "");
909
+
910
+ g_list_level--;
911
+ return list_str;
912
+ }
913
+
914
+ function _DoCodeBlocks(text) {
915
+ //
916
+ // Process Markdown `<pre><code>` blocks.
917
+ //
918
+
919
+ /*
920
+ text = text.replace(/
921
+ (?:\n\n|^)
922
+ ( // $1 = the code block -- one or more lines, starting with a space/tab
923
+ (?:
924
+ (?:[ ]{4}|\t) // Lines must start with a tab or a tab-width of spaces - attacklab: g_tab_width
925
+ .*\n+
926
+ )+
927
+ )
928
+ (\n*[ ]{0,3}[^ \t\n]|(?=~0)) // attacklab: g_tab_width
929
+ /g ,function(){...});
930
+ */
931
+
932
+ // attacklab: sentinel workarounds for lack of \A and \Z, safari\khtml bug
933
+ text += "~0";
934
+
935
+ text = text.replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=~0))/g,
936
+ function (wholeMatch, m1, m2) {
937
+ var codeblock = m1;
938
+ var nextChar = m2;
939
+
940
+ codeblock = _EncodeCode(_Outdent(codeblock));
941
+ codeblock = _Detab(codeblock);
942
+ codeblock = codeblock.replace(/^\n+/g, ""); // trim leading newlines
943
+ codeblock = codeblock.replace(/\n+$/g, ""); // trim trailing whitespace
944
+
945
+ codeblock = "<pre><code>" + codeblock + "\n</code></pre>";
946
+
947
+ return "\n\n" + codeblock + "\n\n" + nextChar;
948
+ }
949
+ );
950
+
951
+ // attacklab: strip sentinel
952
+ text = text.replace(/~0/, "");
953
+
954
+ return text;
955
+ }
956
+
957
+ function hashBlock(text) {
958
+ text = text.replace(/(^\n+|\n+$)/g, "");
959
+ return "\n\n~K" + (g_html_blocks.push(text) - 1) + "K\n\n";
960
+ }
961
+
962
+ function _DoCodeSpans(text) {
963
+ //
964
+ // * Backtick quotes are used for <code></code> spans.
965
+ //
966
+ // * You can use multiple backticks as the delimiters if you want to
967
+ // include literal backticks in the code span. So, this input:
968
+ //
969
+ // Just type ``foo `bar` baz`` at the prompt.
970
+ //
971
+ // Will translate to:
972
+ //
973
+ // <p>Just type <code>foo `bar` baz</code> at the prompt.</p>
974
+ //
975
+ // There's no arbitrary limit to the number of backticks you
976
+ // can use as delimters. If you need three consecutive backticks
977
+ // in your code, use four for delimiters, etc.
978
+ //
979
+ // * You can use spaces to get literal backticks at the edges:
980
+ //
981
+ // ... type `` `bar` `` ...
982
+ //
983
+ // Turns to:
984
+ //
985
+ // ... type <code>`bar`</code> ...
986
+ //
987
+
988
+ /*
989
+ text = text.replace(/
990
+ (^|[^\\]) // Character before opening ` can't be a backslash
991
+ (`+) // $2 = Opening run of `
992
+ ( // $3 = The code block
993
+ [^\r]*?
994
+ [^`] // attacklab: work around lack of lookbehind
995
+ )
996
+ \2 // Matching closer
997
+ (?!`)
998
+ /gm, function(){...});
999
+ */
1000
+
1001
+ text = text.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,
1002
+ function (wholeMatch, m1, m2, m3, m4) {
1003
+ var c = m3;
1004
+ c = c.replace(/^([ \t]*)/g, ""); // leading whitespace
1005
+ c = c.replace(/[ \t]*$/g, ""); // trailing whitespace
1006
+ c = _EncodeCode(c);
1007
+ c = c.replace(/:\/\//g, "~P"); // to prevent auto-linking. Not necessary in code *blocks*, but in code spans. Will be converted back after the auto-linker runs.
1008
+ return m1 + "<code>" + c + "</code>";
1009
+ }
1010
+ );
1011
+
1012
+ return text;
1013
+ }
1014
+
1015
+ function _EncodeCode(text) {
1016
+ //
1017
+ // Encode/escape certain characters inside Markdown code runs.
1018
+ // The point is that in code, these characters are literals,
1019
+ // and lose their special Markdown meanings.
1020
+ //
1021
+ // Encode all ampersands; HTML entities are not
1022
+ // entities within a Markdown code span.
1023
+ text = text.replace(/&/g, "&amp;");
1024
+
1025
+ // Do the angle bracket song and dance:
1026
+ text = text.replace(/</g, "&lt;");
1027
+ text = text.replace(/>/g, "&gt;");
1028
+
1029
+ // Now, escape characters that are magic in Markdown:
1030
+ text = escapeCharacters(text, "\*_{}[]\\", false);
1031
+
1032
+ // jj the line above breaks this:
1033
+ //---
1034
+
1035
+ //* Item
1036
+
1037
+ // 1. Subitem
1038
+
1039
+ // special char: *
1040
+ //---
1041
+
1042
+ return text;
1043
+ }
1044
+
1045
+ function _DoItalicsAndBold(text) {
1046
+
1047
+ // <strong> must go first:
1048
+ text = text.replace(/([\W_]|^)(\*\*|__)(?=\S)([^\r]*?\S[\*_]*)\2([\W_]|$)/g,
1049
+ "$1<strong>$3</strong>$4");
1050
+
1051
+ text = text.replace(/([\W_]|^)(\*|_)(?=\S)([^\r\*_]*?\S)\2([\W_]|$)/g,
1052
+ "$1<em>$3</em>$4");
1053
+
1054
+ return text;
1055
+ }
1056
+
1057
+ function _DoBlockQuotes(text) {
1058
+
1059
+ /*
1060
+ text = text.replace(/
1061
+ ( // Wrap whole match in $1
1062
+ (
1063
+ ^[ \t]*>[ \t]? // '>' at the start of a line
1064
+ .+\n // rest of the first line
1065
+ (.+\n)* // subsequent consecutive lines
1066
+ \n* // blanks
1067
+ )+
1068
+ )
1069
+ /gm, function(){...});
1070
+ */
1071
+
1072
+ text = text.replace(/((^[ \t]*>[ \t]?.+\n(.+\n)*\n*)+)/gm,
1073
+ function (wholeMatch, m1) {
1074
+ var bq = m1;
1075
+
1076
+ // attacklab: hack around Konqueror 3.5.4 bug:
1077
+ // "----------bug".replace(/^-/g,"") == "bug"
1078
+
1079
+ bq = bq.replace(/^[ \t]*>[ \t]?/gm, "~0"); // trim one level of quoting
1080
+
1081
+ // attacklab: clean up hack
1082
+ bq = bq.replace(/~0/g, "");
1083
+
1084
+ bq = bq.replace(/^[ \t]+$/gm, ""); // trim whitespace-only lines
1085
+ bq = _RunBlockGamut(bq); // recurse
1086
+
1087
+ bq = bq.replace(/(^|\n)/g, "$1 ");
1088
+ // These leading spaces screw with <pre> content, so we need to fix that:
1089
+ bq = bq.replace(
1090
+ /(\s*<pre>[^\r]+?<\/pre>)/gm,
1091
+ function (wholeMatch, m1) {
1092
+ var pre = m1;
1093
+ // attacklab: hack around Konqueror 3.5.4 bug:
1094
+ pre = pre.replace(/^ /mg, "~0");
1095
+ pre = pre.replace(/~0/g, "");
1096
+ return pre;
1097
+ });
1098
+
1099
+ return hashBlock("<blockquote>\n" + bq + "\n</blockquote>");
1100
+ }
1101
+ );
1102
+ return text;
1103
+ }
1104
+
1105
+ function _FormParagraphs(text, doNotUnhash) {
1106
+ //
1107
+ // Params:
1108
+ // $text - string to process with html <p> tags
1109
+ //
1110
+
1111
+ // Strip leading and trailing lines:
1112
+ text = text.replace(/^\n+/g, "");
1113
+ text = text.replace(/\n+$/g, "");
1114
+
1115
+ var grafs = text.split(/\n{2,}/g);
1116
+ var grafsOut = [];
1117
+
1118
+ var markerRe = /~K(\d+)K/;
1119
+
1120
+ //
1121
+ // Wrap <p> tags.
1122
+ //
1123
+ var end = grafs.length;
1124
+ for (var i = 0; i < end; i++) {
1125
+ var str = grafs[i];
1126
+
1127
+ // if this is an HTML marker, copy it
1128
+ if (markerRe.test(str)) {
1129
+ grafsOut.push(str);
1130
+ }
1131
+ else if (/\S/.test(str)) {
1132
+ str = _RunSpanGamut(str);
1133
+ str = str.replace(/^([ \t]*)/g, "<p>");
1134
+ str += "</p>"
1135
+ grafsOut.push(str);
1136
+ }
1137
+
1138
+ }
1139
+ //
1140
+ // Unhashify HTML blocks
1141
+ //
1142
+ if (!doNotUnhash) {
1143
+ end = grafsOut.length;
1144
+ for (var i = 0; i < end; i++) {
1145
+ var foundAny = true;
1146
+ while (foundAny) { // we may need several runs, since the data may be nested
1147
+ foundAny = false;
1148
+ grafsOut[i] = grafsOut[i].replace(/~K(\d+)K/g, function (wholeMatch, id) {
1149
+ foundAny = true;
1150
+ return g_html_blocks[id];
1151
+ });
1152
+ }
1153
+ }
1154
+ }
1155
+ return grafsOut.join("\n\n");
1156
+ }
1157
+
1158
+ function _EncodeAmpsAndAngles(text) {
1159
+ // Smart processing for ampersands and angle brackets that need to be encoded.
1160
+
1161
+ // Ampersand-encoding based entirely on Nat Irons's Amputator MT plugin:
1162
+ // http://bumppo.net/projects/amputator/
1163
+ text = text.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g, "&amp;");
1164
+
1165
+ // Encode naked <'s
1166
+ text = text.replace(/<(?![a-z\/?\$!])/gi, "&lt;");
1167
+
1168
+ return text;
1169
+ }
1170
+
1171
+ function _EncodeBackslashEscapes(text) {
1172
+ //
1173
+ // Parameter: String.
1174
+ // Returns: The string, with after processing the following backslash
1175
+ // escape sequences.
1176
+ //
1177
+
1178
+ // attacklab: The polite way to do this is with the new
1179
+ // escapeCharacters() function:
1180
+ //
1181
+ // text = escapeCharacters(text,"\\",true);
1182
+ // text = escapeCharacters(text,"`*_{}[]()>#+-.!",true);
1183
+ //
1184
+ // ...but we're sidestepping its use of the (slow) RegExp constructor
1185
+ // as an optimization for Firefox. This function gets called a LOT.
1186
+
1187
+ text = text.replace(/\\(\\)/g, escapeCharacters_callback);
1188
+ text = text.replace(/\\([`*_{}\[\]()>#+-.!])/g, escapeCharacters_callback);
1189
+ return text;
1190
+ }
1191
+
1192
+ function _DoAutoLinks(text) {
1193
+
1194
+ // note that at this point, all other URL in the text are already hyperlinked as <a href=""></a>
1195
+ // *except* for the <http://www.foo.com> case
1196
+
1197
+ // automatically add < and > around unadorned raw hyperlinks
1198
+ // must be preceded by space/BOF and followed by non-word/EOF character
1199
+ text = text.replace(/(^|\s)(https?|ftp)(:\/\/[-A-Z0-9+&@#\/%?=~_|\[\]\(\)!:,\.;]*[-A-Z0-9+&@#\/%=~_|\[\]])($|\W)/gi, "$1<$2$3>$4");
1200
+
1201
+ // autolink anything like <http://example.com>
1202
+
1203
+ var replacer = function (wholematch, m1) { return "<a href=\"" + m1 + "\">" + pluginHooks.plainLinkText(m1) + "</a>"; }
1204
+ text = text.replace(/<((https?|ftp):[^'">\s]+)>/gi, replacer);
1205
+
1206
+ // Email addresses: <address@domain.foo>
1207
+ /*
1208
+ text = text.replace(/
1209
+ <
1210
+ (?:mailto:)?
1211
+ (
1212
+ [-.\w]+
1213
+ \@
1214
+ [-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+
1215
+ )
1216
+ >
1217
+ /gi, _DoAutoLinks_callback());
1218
+ */
1219
+
1220
+ /* disabling email autolinking, since we don't do that on the server, either
1221
+ text = text.replace(/<(?:mailto:)?([-.\w]+\@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,
1222
+ function(wholeMatch,m1) {
1223
+ return _EncodeEmailAddress( _UnescapeSpecialChars(m1) );
1224
+ }
1225
+ );
1226
+ */
1227
+ return text;
1228
+ }
1229
+
1230
+ function _UnescapeSpecialChars(text) {
1231
+ //
1232
+ // Swap back in all the special characters we've hidden.
1233
+ //
1234
+ text = text.replace(/~E(\d+)E/g,
1235
+ function (wholeMatch, m1) {
1236
+ var charCodeToReplace = parseInt(m1);
1237
+ return String.fromCharCode(charCodeToReplace);
1238
+ }
1239
+ );
1240
+ return text;
1241
+ }
1242
+
1243
+ function _Outdent(text) {
1244
+ //
1245
+ // Remove one level of line-leading tabs or spaces
1246
+ //
1247
+
1248
+ // attacklab: hack around Konqueror 3.5.4 bug:
1249
+ // "----------bug".replace(/^-/g,"") == "bug"
1250
+
1251
+ text = text.replace(/^(\t|[ ]{1,4})/gm, "~0"); // attacklab: g_tab_width
1252
+
1253
+ // attacklab: clean up hack
1254
+ text = text.replace(/~0/g, "")
1255
+
1256
+ return text;
1257
+ }
1258
+
1259
+ function _Detab(text) {
1260
+ if (!/\t/.test(text))
1261
+ return text;
1262
+
1263
+ var spaces = [" ", " ", " ", " "],
1264
+ skew = 0,
1265
+ v;
1266
+
1267
+ return text.replace(/[\n\t]/g, function (match, offset) {
1268
+ if (match === "\n") {
1269
+ skew = offset + 1;
1270
+ return match;
1271
+ }
1272
+ v = (offset - skew) % 4;
1273
+ skew = offset + 1;
1274
+ return spaces[v];
1275
+ });
1276
+ }
1277
+
1278
+ //
1279
+ // attacklab: Utility functions
1280
+ //
1281
+
1282
+ var _problemUrlChars = /(?:["'*()[\]:]|~D)/g;
1283
+
1284
+ // hex-encodes some unusual "problem" chars in URLs to avoid URL detection problems
1285
+ function encodeProblemUrlChars(url) {
1286
+ if (!url)
1287
+ return "";
1288
+
1289
+ var len = url.length;
1290
+
1291
+ return url.replace(_problemUrlChars, function (match, offset) {
1292
+ if (match == "~D") // escape for dollar
1293
+ return "%24";
1294
+ if (match == ":") {
1295
+ if (offset == len - 1 || /[0-9\/]/.test(url.charAt(offset + 1)))
1296
+ return ":"
1297
+ }
1298
+ return "%" + match.charCodeAt(0).toString(16);
1299
+ });
1300
+ }
1301
+
1302
+
1303
+ function escapeCharacters(text, charsToEscape, afterBackslash) {
1304
+ // First we have to escape the escape characters so that
1305
+ // we can build a character class out of them
1306
+ var regexString = "([" + charsToEscape.replace(/([\[\]\\])/g, "\\$1") + "])";
1307
+
1308
+ if (afterBackslash) {
1309
+ regexString = "\\\\" + regexString;
1310
+ }
1311
+
1312
+ var regex = new RegExp(regexString, "g");
1313
+ text = text.replace(regex, escapeCharacters_callback);
1314
+
1315
+ return text;
1316
+ }
1317
+
1318
+
1319
+ function escapeCharacters_callback(wholeMatch, m1) {
1320
+ var charCodeToEscape = m1.charCodeAt(0);
1321
+ return "~E" + charCodeToEscape + "E";
1322
+ }
1323
+
1324
+ }; // end of the Markdown.Converter constructor
1325
+
1326
+ })();