2 // showdown.js -- A javascript port of Markdown.
4 // Copyright (c) 2007 John Fraser.
6 // Original Markdown Copyright (c) 2004-2005 John Gruber
7 // <http://daringfireball.net/projects/markdown/>
9 // The full source distribution is at:
15 // <http://www.attacklab.net/>
19 // Wherever possible, Showdown is a straight, line-by-line port
20 // of the Perl version of Markdown.
22 // This is not a normal parser design; it's basically just a
23 // series of string substitutions. It's hard to read and
24 // maintain this way, but keeping Showdown close to the original
25 // design makes it easier to port new features.
27 // More importantly, Showdown behaves like markdown.pl in most
28 // edge cases. So web applications can do client-side preview
29 // in Javascript, and then build identical HTML on the server.
31 // This port needs the new RegExp functionality of ECMA 262,
32 // 3rd Edition (i.e. Javascript 1.5). Most modern web browsers
33 // should do fine. Even with the new regular expression features,
34 // We do a lot of work to emulate Perl's regex functionality.
35 // The tricky changes in this file mostly have the "attacklab:"
36 // label. Major or self-explanatory changes don't.
38 // Smart diff tools like Araxis Merge will be able to match up
39 // this file with markdown.pl in a useful way. A little tweaking
40 // helps: in a copy of markdown.pl, replace "#" with "//" and
41 // replace "$text" with "text". Be sure to ignore whitespace
49 // var text = "Markdown *rocks*.";
51 // var converter = new Attacklab.showdown.converter();
52 // var html = converter.makeHtml(text);
56 // Note: move the sample code to the bottom of this
57 // file before uncommenting it.
62 // Attacklab namespace
64 var Attacklab = Attacklab || {}
69 Attacklab.showdown = Attacklab.showdown || {}
74 // Wraps all "globals" so that the only thing
75 // exposed is makeHtml().
77 Attacklab.showdown.converter = function() {
83 // Global hashes, used by various utility routines
88 // Used to track when we're inside an ordered or unordered list
89 // (see _ProcessListItems() for details):
93 this.makeHtml = function(text) {
95 // Main function. The order in which other subs are called here is
96 // essential. Link and image substitutions need to happen before
97 // _EscapeSpecialCharsWithinTagAttributes(), so that any *'s or _'s in the <a>
98 // and <img> tags get encoded.
101 // Clear the global hashes. If we don't clear these, you get conflicts
102 // from other articles when generating a page which contains more than
103 // one article (e.g. an index page that shows the N most recent
105 g_urls = new Array();
106 g_titles = new Array();
107 g_html_blocks = new Array();
109 // attacklab: Replace ~ with ~T
110 // This lets us use tilde as an escape char to avoid md5 hashes
111 // The choice of character is arbitray; anything that isn't
112 // magic in Markdown will work.
113 text = text.replace(/~/g,"~T");
115 // attacklab: Replace $ with ~D
116 // RegExp interprets $ as a special character
117 // when it's in a replacement string
118 text = text.replace(/\$/g,"~D");
120 // Standardize line endings
121 text = text.replace(/\r\n/g,"\n"); // DOS to Unix
122 text = text.replace(/\r/g,"\n"); // Mac to Unix
124 // Make sure text begins and ends with a couple of newlines:
125 text = "\n\n" + text + "\n\n";
127 // Convert all tabs to spaces.
130 // Strip any lines consisting only of spaces and tabs.
131 // This makes subsequent regexen easier to write, because we can
132 // match consecutive blank lines with /\n+/ instead of something
133 // contorted like /[ \t]*\n+/ .
134 text = text.replace(/^[ \t]+$/mg,"");
136 // Turn block-level HTML blocks into hash entries
137 text = _HashHTMLBlocks(text);
139 // Strip link definitions, store in hashes.
140 text = _StripLinkDefinitions(text);
142 text = _RunBlockGamut(text);
144 text = _UnescapeSpecialChars(text);
146 // attacklab: Restore dollar signs
147 text = text.replace(/~D/g,"$$");
149 // attacklab: Restore tildes
150 text = text.replace(/~T/g,"~");
155 var _StripLinkDefinitions = function(text) {
157 // Strips link definitions from text, stores the URLs and titles in
161 // Link defs are in the form: ^[id]: url "optional title"
164 var text = text.replace(/
165 ^[ ]{0,3}\[(.+)\]: // id = $1 attacklab: g_tab_width - 1
167 \n? // maybe *one* newline
169 <?(\S+?)>? // url = $2
171 \n? // maybe one newline
174 (\n*) // any lines skipped = $3 attacklab: lookbehind removed
179 )? // title is optional
184 var text = text.replace(/^[ ]{0,3}\[(.+)\]:[ \t]*\n?[ \t]*<?(\S+?)>?[ \t]*\n?[ \t]*(?:(\n*)["(](.+?)[")][ \t]*)?(?:\n+)/gm,
185 function (wholeMatch,m1,m2,m3,m4) {
186 m1 = m1.toLowerCase();
187 g_urls[m1] = _EncodeAmpsAndAngles(m2); // Link IDs are case-insensitive
189 // Oops, found blank lines, so it's not a title.
190 // Put back the parenthetical statement we stole.
193 g_titles[m1] = m4.replace(/"/g,""");
196 // Completely remove the definition from the text
204 var _HashHTMLBlocks = function(text) {
205 // attacklab: Double up blank lines to reduce lookaround
206 text = text.replace(/\n/g,"\n\n");
208 // Hashify HTML blocks:
209 // We only want to do this for block-level HTML tags, such as headers,
210 // lists, and tables. That's because we still want to wrap <p>s around
211 // "paragraphs" that are wrapped in non-block-level tags, such as anchors,
212 // phrase emphasis, and spans. The list of tags we're looking for is
214 var block_tags_a = "p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del"
215 var block_tags_b = "p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math"
217 // First, look for nested blocks, e.g.:
220 // tags for inner block must be indented.
224 // The outermost tags must start at the left margin for this to match, and
225 // the inner nested divs must be indented.
226 // We need to do this before the next, more liberal match, because the next
227 // match will start at the first `<div>` and stop at the first `</div>`.
229 // attacklab: This regex can be expensive when it fails.
231 var text = text.replace(/
233 ^ // start of line (with /m)
234 <($block_tags_a) // start tag = $2
236 // attacklab: hack around khtml/pcre bug...
237 [^\r]*?\n // any number of lines, minimally matching
238 </\2> // the matching end tag
239 [ \t]* // trailing spaces/tabs
240 (?=\n+) // followed by a newline
241 ) // attacklab: there are sentinel newlines at end of document
242 /gm,function(){...}};
244 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);
247 // Now match more liberally, simply from `\n<tag>` to `</tag>\n`
251 var text = text.replace(/
253 ^ // start of line (with /m)
254 <($block_tags_b) // start tag = $2
256 // attacklab: hack around khtml/pcre bug...
257 [^\r]*? // any number of lines, minimally matching
258 .*</\2> // the matching end tag
259 [ \t]* // trailing spaces/tabs
260 (?=\n+) // followed by a newline
261 ) // attacklab: there are sentinel newlines at end of document
262 /gm,function(){...}};
264 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);
266 // Special case just for <hr />. It was easier to make a special case than
267 // to make the other regex more complicated.
270 text = text.replace(/
272 \n\n // Starting after a blank line
274 (<(hr) // start tag = $2
277 \/?>) // the matching end tag
279 (?=\n{2,}) // followed by a blank line
283 text = text.replace(/(\n[ ]{0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,hashElement);
285 // Special case for standalone HTML comments:
288 text = text.replace(/
290 \n\n // Starting after a blank line
291 [ ]{0,3} // attacklab: g_tab_width - 1
296 (?=\n{2,}) // followed by a blank line
300 text = text.replace(/(\n\n[ ]{0,3}<!(--[^\r]*?--\s*)+>[ \t]*(?=\n{2,}))/g,hashElement);
302 // PHP and ASP-style processor instructions (<?...?> and <%...%>)
305 text = text.replace(/
307 \n\n // Starting after a blank line
310 [ ]{0,3} // attacklab: g_tab_width - 1
317 (?=\n{2,}) // followed by a blank line
321 text = text.replace(/(?:\n\n)([ ]{0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,hashElement);
323 // attacklab: Undo double lines (see comment at top of this function)
324 text = text.replace(/\n\n/g,"\n");
328 var hashElement = function(wholeMatch,m1) {
332 blockText = blockText.replace(/\n\n/g,"\n");
333 blockText = blockText.replace(/^\n/,"");
335 // strip trailing blank lines
336 blockText = blockText.replace(/\n+$/g,"");
338 // Replace the element text with a marker ("~KxK" where x is its key)
339 blockText = "\n\n~K" + (g_html_blocks.push(blockText)-1) + "K\n\n";
344 var _RunBlockGamut = function(text) {
346 // These are all the transformations that form block-level
347 // tags like paragraphs, headers, and list items.
349 text = _DoHeaders(text);
351 // Do Horizontal Rules:
352 var key = hashBlock("<hr />");
353 text = text.replace(/^[ ]{0,2}([ ]?\*[ ]?){3,}[ \t]*$/gm,key);
354 text = text.replace(/^[ ]{0,2}([ ]?-[ ]?){3,}[ \t]*$/gm,key);
355 text = text.replace(/^[ ]{0,2}([ ]?_[ ]?){3,}[ \t]*$/gm,key);
357 text = _DoLists(text);
358 text = _DoCodeBlocks(text);
359 text = _DoBlockQuotes(text);
361 // We already ran _HashHTMLBlocks() before, in Markdown(), but that
362 // was to escape raw HTML in the original Markdown source. This time,
363 // we're escaping the markup we've just created, so that we don't wrap
364 // <p> tags around block-level tags.
365 text = _HashHTMLBlocks(text);
366 text = _FormParagraphs(text);
372 var _RunSpanGamut = function(text) {
374 // These are all the transformations that occur *within* block-level
375 // tags like paragraphs, headers, and list items.
378 text = _DoCodeSpans(text);
379 text = _EscapeSpecialCharsWithinTagAttributes(text);
380 text = _EncodeBackslashEscapes(text);
382 // Process anchor and image tags. Images must come first,
383 // because ![foo][f] looks like an anchor.
384 text = _DoImages(text);
385 text = _DoAnchors(text);
387 // Make links out of things like `<http://example.com/>`
388 // Must come after _DoAnchors(), because you can use < and >
389 // delimiters in inline links like [this](<url>).
390 text = _DoAutoLinks(text);
391 text = _EncodeAmpsAndAngles(text);
392 text = _DoItalicsAndBold(text);
395 text = text.replace(/ +\n/g," <br />\n");
400 var _EscapeSpecialCharsWithinTagAttributes = function(text) {
402 // Within tags -- meaning between < and > -- encode [\ ` * _] so they
403 // don't conflict with their use in Markdown for code, italics and strong.
406 // Build a regex to find HTML tags and comments. See Friedl's
407 // "Mastering Regular Expressions", 2nd Ed., pp. 200-201.
408 var regex = /(<[a-z\/!$]("[^"]*"|'[^']*'|[^'">])*>|<!(--.*?--\s*)+>)/gi;
410 text = text.replace(regex, function(wholeMatch) {
411 var tag = wholeMatch.replace(/(.)<\/?code>(?=.)/g,"$1`");
412 tag = escapeCharacters(tag,"\\`*_");
419 var _DoAnchors = function(text) {
421 // Turn Markdown link shortcuts into XHTML <a> tags.
424 // First, handle reference-style links: [link text] [id]
428 text = text.replace(/
429 ( // wrap whole match in $1
433 \[[^\]]*\] // allow brackets nested one level
435 [^\[] // or anything else
440 [ ]? // one optional space
441 (?:\n[ ]*)? // one optional newline followed by spaces
446 )()()()() // pad remaining backreferences
447 /g,_DoAnchors_callback);
449 text = text.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g,writeAnchorTag);
452 // Next, inline-style links: [link text](url "optional title")
456 text = text.replace(/
457 ( // wrap whole match in $1
461 \[[^\]]*\] // allow brackets nested one level
463 [^\[\]] // or anything else
469 () // no id, so leave $3 empty
470 <?(.*?)>? // href = $4
473 (['"]) // quote char = $6
476 [ \t]* // ignore any spaces/tabs between closing quote and )
477 )? // title is optional
482 text = text.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\]\([ \t]*()<?(.*?)>?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g,writeAnchorTag);
485 // Last, handle reference-style shortcuts: [link text]
486 // These must come last in case you've also got [link test][1]
487 // or [link test](/foo)
491 text = text.replace(/
492 ( // wrap whole match in $1
494 ([^\[\]]+) // link text = $2; can't contain '[' or ']'
496 )()()()()() // pad rest of backreferences
499 text = text.replace(/(\[([^\[\]]+)\])()()()()()/g, writeAnchorTag);
504 var writeAnchorTag = function(wholeMatch,m1,m2,m3,m4,m5,m6,m7) {
505 if (m7 == undefined) m7 = "";
506 var whole_match = m1;
508 var link_id = m3.toLowerCase();
514 // lower-case and turn embedded newlines into spaces
515 link_id = link_text.toLowerCase().replace(/ ?\n/g," ");
519 if (g_urls[link_id] != undefined) {
520 url = g_urls[link_id];
521 if (g_titles[link_id] != undefined) {
522 title = g_titles[link_id];
526 if (whole_match.search(/\(\s*\)$/m)>-1) {
527 // Special case for explicit empty url
535 url = escapeCharacters(url,"*_");
536 var result = "<a href=\"" + url + "\"";
539 title = title.replace(/"/g,""");
540 title = escapeCharacters(title,"*_");
541 result += " title=\"" + title + "\"";
544 result += ">" + link_text + "</a>";
550 var _DoImages = function(text) {
552 // Turn Markdown image shortcuts into <img> tags.
556 // First, handle reference-style labeled images: ![alt text][id]
560 text = text.replace(/
561 ( // wrap whole match in $1
563 (.*?) // alt text = $2
566 [ ]? // one optional space
567 (?:\n[ ]*)? // one optional newline followed by spaces
572 )()()()() // pad rest of backreferences
575 text = text.replace(/(!\[(.*?)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g,writeImageTag);
578 // Next, handle inline images: ![alt text](url "optional title")
579 // Don't forget: encode * and _
582 text = text.replace(/
583 ( // wrap whole match in $1
585 (.*?) // alt text = $2
587 \s? // One optional whitespace character
590 () // no id, so leave $3 empty
591 <?(\S+?)>? // src url = $4
594 (['"]) // quote char = $6
598 )? // title is optional
603 text = text.replace(/(!\[(.*?)\]\s?\([ \t]*()<?(\S+?)>?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g,writeImageTag);
608 var writeImageTag = function(wholeMatch,m1,m2,m3,m4,m5,m6,m7) {
609 var whole_match = m1;
611 var link_id = m3.toLowerCase();
615 if (!title) title = "";
619 // lower-case and turn embedded newlines into spaces
620 link_id = alt_text.toLowerCase().replace(/ ?\n/g," ");
624 if (g_urls[link_id] != undefined) {
625 url = g_urls[link_id];
626 if (g_titles[link_id] != undefined) {
627 title = g_titles[link_id];
635 alt_text = alt_text.replace(/"/g,""");
636 url = escapeCharacters(url,"*_");
637 url = scriptUrl + url
638 var result = "<img src=\"" + url + "\" alt=\"" + alt_text + "\"";
639 result = result.replace("//", "/")
641 // attacklab: Markdown.pl adds empty title attributes to images.
642 // Replicate this bug.
645 title = title.replace(/"/g,""");
646 title = escapeCharacters(title,"*_");
647 result += " title=\"" + title + "\"";
656 var _DoHeaders = function(text) {
658 // Setext-style headers:
665 text = text.replace(/^(.+)[ \t]*\n=+[ \t]*\n+/gm,
666 function(wholeMatch,m1){return hashBlock("<h1>" + _RunSpanGamut(m1) + "</h1>");});
668 text = text.replace(/^(.+)[ \t]*\n-+[ \t]*\n+/gm,
669 function(matchFound,m1){return hashBlock("<h2>" + _RunSpanGamut(m1) + "</h2>");});
671 // atx-style headers:
674 // ## Header 2 with closing hashes ##
680 text = text.replace(/
681 ^(\#{1,6}) // $1 = string of #'s
683 (.+?) // $2 = Header text
685 \#* // optional closing #'s (not counted)
687 /gm, function() {...});
690 text = text.replace(/^(\#{1,6})[ \t]*(.+?)[ \t]*\#*\n+/gm,
691 function(wholeMatch,m1,m2) {
692 var h_level = m1.length;
693 return hashBlock("<h" + h_level + ">" + _RunSpanGamut(m2) + "</h" + h_level + ">");
699 // This declaration keeps Dojo compressor from outputting garbage:
700 var _ProcessListItems;
702 var _DoLists = function(text) {
704 // Form HTML ordered (numbered) and unordered (bulleted) lists.
707 // attacklab: add sentinel to hack around khtml/safari bug:
708 // http://bugs.webkit.org/show_bug.cgi?id=11231
711 // Re-usable pattern to match any entirel ul or ol list:
717 [ ]{0,3} // attacklab: g_tab_width - 1
718 ([*+-]|\d+[.]) // $3 = first list item marker
723 ~0 // sentinel for workaround; should be $
727 (?! // Negative lookahead for another list item marker
729 (?:[*+-]|\d+[.])[ \t]+
734 var whole_list = /^(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm;
737 text = text.replace(whole_list,function(wholeMatch,m1,m2) {
739 var list_type = (m2.search(/[*+-]/g)>-1) ? "ul" : "ol";
741 // Turn double returns into triple returns, so that we can make a
742 // paragraph for the last item in a list, if necessary:
743 list = list.replace(/\n{2,}/g,"\n\n\n");;
744 var result = _ProcessListItems(list);
746 // Trim any trailing whitespace, to put the closing `</$list_type>`
747 // up on the preceding line, to get it past the current stupid
748 // HTML block parser. This is a hack to work around the terrible
749 // hack that is the HTML block parser.
750 result = result.replace(/\s+$/,"");
751 result = "<"+list_type+">" + result + "</"+list_type+">\n";
755 whole_list = /(\n\n|^\n?)(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/g;
756 text = text.replace(whole_list,function(wholeMatch,m1,m2,m3) {
760 var list_type = (m3.search(/[*+-]/g)>-1) ? "ul" : "ol";
761 // Turn double returns into triple returns, so that we can make a
762 // paragraph for the last item in a list, if necessary:
763 var list = list.replace(/\n{2,}/g,"\n\n\n");;
764 var result = _ProcessListItems(list);
765 result = runup + "<"+list_type+">\n" + result + "</"+list_type+">\n";
770 // attacklab: strip sentinel
771 text = text.replace(/~0/,"");
776 _ProcessListItems = function(list_str) {
778 // Process the contents of a single ordered or unordered list, splitting it
779 // into individual list items.
781 // The $g_list_level global keeps track of when we're inside a list.
782 // Each time we enter a list, we increment it; when we leave a list,
783 // we decrement. If it's zero, we're not in a list anymore.
785 // We do this because when we're not inside a list, we want to treat
786 // something like this:
788 // I recommend upgrading to version
789 // 8. Oops, now this line is treated
792 // As a single paragraph, despite the fact that the second line starts
793 // with a digit-period-space sequence.
795 // Whereas when we're inside a list (or sub-list), that line will be
796 // treated as the start of a sub-list. What a kludge, huh? This is
797 // an aspect of Markdown's syntax that's hard to parse perfectly
798 // without resorting to mind-reading. Perhaps the solution is to
799 // change the syntax rules such that sub-lists must start with a
800 // starting cardinal number; e.g. "1." or "a.".
804 // trim trailing blank lines:
805 list_str = list_str.replace(/\n{2,}$/,"\n");
807 // attacklab: add sentinel to emulate \z
811 list_str = list_str.replace(/
812 (\n)? // leading line = $1
813 (^[ \t]*) // leading whitespace = $2
814 ([*+-]|\d+[.]) [ \t]+ // list marker = $3
815 ([^\r]+? // list item text = $4
817 (?= \n* (~0 | \2 ([*+-]|\d+[.]) [ \t]+))
818 /gm, function(){...});
820 list_str = list_str.replace(/(\n)?(^[ \t]*)([*+-]|\d+[.])[ \t]+([^\r]+?(\n{1,2}))(?=\n*(~0|\2([*+-]|\d+[.])[ \t]+))/gm,
821 function(wholeMatch,m1,m2,m3,m4){
823 var leading_line = m1;
824 var leading_space = m2;
826 if (leading_line || (item.search(/\n{2,}/)>-1)) {
827 item = _RunBlockGamut(_Outdent(item));
830 // Recursion for sub-lists:
831 item = _DoLists(_Outdent(item));
832 item = item.replace(/\n$/,""); // chomp(item)
833 item = _RunSpanGamut(item);
836 return "<li>" + item + "</li>\n";
840 // attacklab: strip sentinel
841 list_str = list_str.replace(/~0/g,"");
848 var _DoCodeBlocks = function(text) {
850 // Process Markdown `<pre><code>` blocks.
854 text = text.replace(text,
856 ( // $1 = the code block -- one or more lines, starting with a space/tab
858 (?:[ ]{4}|\t) // Lines must start with a tab or a tab-width of spaces - attacklab: g_tab_width
862 (\n*[ ]{0,3}[^ \t\n]|(?=~0)) // attacklab: g_tab_width
866 // attacklab: sentinel workarounds for lack of \A and \Z, safari\khtml bug
869 text = text.replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=~0))/g,
870 function(wholeMatch,m1,m2) {
874 codeblock = _EncodeCode( _Outdent(codeblock));
875 codeblock = _Detab(codeblock);
876 codeblock = codeblock.replace(/^\n+/g,""); // trim leading newlines
877 codeblock = codeblock.replace(/\n+$/g,""); // trim trailing whitespace
879 codeblock = "<pre><code>" + codeblock + "\n</code></pre>";
881 return hashBlock(codeblock) + nextChar;
885 // attacklab: strip sentinel
886 text = text.replace(/~0/,"");
891 var hashBlock = function(text) {
892 text = text.replace(/(^\n+|\n+$)/g,"");
893 return "\n\n~K" + (g_html_blocks.push(text)-1) + "K\n\n";
897 var _DoCodeSpans = function(text) {
899 // * Backtick quotes are used for <code></code> spans.
901 // * You can use multiple backticks as the delimiters if you want to
902 // include literal backticks in the code span. So, this input:
904 // Just type ``foo `bar` baz`` at the prompt.
906 // Will translate to:
908 // <p>Just type <code>foo `bar` baz</code> at the prompt.</p>
910 // There's no arbitrary limit to the number of backticks you
911 // can use as delimters. If you need three consecutive backticks
912 // in your code, use four for delimiters, etc.
914 // * You can use spaces to get literal backticks at the edges:
916 // ... type `` `bar` `` ...
920 // ... type <code>`bar`</code> ...
924 text = text.replace(/
925 (^|[^\\]) // Character before opening ` can't be a backslash
926 (`+) // $2 = Opening run of `
927 ( // $3 = The code block
929 [^`] // attacklab: work around lack of lookbehind
931 \2 // Matching closer
933 /gm, function(){...});
936 text = text.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,
937 function(wholeMatch,m1,m2,m3,m4) {
939 c = c.replace(/^([ \t]*)/g,""); // leading whitespace
940 c = c.replace(/[ \t]*$/g,""); // trailing whitespace
942 return m1+"<code>"+c+"</code>";
949 var _EncodeCode = function(text) {
951 // Encode/escape certain characters inside Markdown code runs.
952 // The point is that in code, these characters are literals,
953 // and lose their special Markdown meanings.
955 // Encode all ampersands; HTML entities are not
956 // entities within a Markdown code span.
957 text = text.replace(/&/g,"&");
959 // Do the angle bracket song and dance:
960 text = text.replace(/</g,"<");
961 text = text.replace(/>/g,">");
963 // Now, escape characters that are magic in Markdown:
964 text = escapeCharacters(text,"\*_{}[]\\",false);
966 // jj the line above breaks this:
980 var _DoItalicsAndBold = function(text) {
982 // <strong> must go first:
983 text = text.replace(/(\*\*|__)(?=\S)([^\r]*?\S[\*_]*)\1/g,
984 "<strong>$2</strong>");
986 text = text.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g,
993 var _DoBlockQuotes = function(text) {
996 text = text.replace(/
997 ( // Wrap whole match in $1
999 ^[ \t]*>[ \t]? // '>' at the start of a line
1000 .+\n // rest of the first line
1001 (.+\n)* // subsequent consecutive lines
1005 /gm, function(){...});
1008 text = text.replace(/((^[ \t]*>[ \t]?.+\n(.+\n)*\n*)+)/gm,
1009 function(wholeMatch,m1) {
1012 // attacklab: hack around Konqueror 3.5.4 bug:
1013 // "----------bug".replace(/^-/g,"") == "bug"
1015 bq = bq.replace(/^[ \t]*>[ \t]?/gm,"~0"); // trim one level of quoting
1017 // attacklab: clean up hack
1018 bq = bq.replace(/~0/g,"");
1020 bq = bq.replace(/^[ \t]+$/gm,""); // trim whitespace-only lines
1021 bq = _RunBlockGamut(bq); // recurse
1023 bq = bq.replace(/(^|\n)/g,"$1 ");
1024 // These leading spaces screw with <pre> content, so we need to fix that:
1026 /(\s*<pre>[^\r]+?<\/pre>)/gm,
1027 function(wholeMatch,m1) {
1029 // attacklab: hack around Konqueror 3.5.4 bug:
1030 pre = pre.replace(/^ /mg,"~0");
1031 pre = pre.replace(/~0/g,"");
1035 return hashBlock("<blockquote>\n" + bq + "\n</blockquote>");
1041 var _FormParagraphs = function(text) {
1044 // $text - string to process with html <p> tags
1047 // Strip leading and trailing lines:
1048 text = text.replace(/^\n+/g,"");
1049 text = text.replace(/\n+$/g,"");
1051 var grafs = text.split(/\n{2,}/g);
1052 var grafsOut = new Array();
1057 var end = grafs.length;
1058 for (var i=0; i<end; i++) {
1061 // if this is an HTML marker, copy it
1062 if (str.search(/~K(\d+)K/g) >= 0) {
1065 else if (str.search(/\S/) >= 0) {
1066 str = _RunSpanGamut(str);
1067 str = str.replace(/^([ \t]*)/g,"<p>");
1075 // Unhashify HTML blocks
1077 end = grafsOut.length;
1078 for (var i=0; i<end; i++) {
1079 // if this is a marker for an html block...
1080 while (grafsOut[i].search(/~K(\d+)K/) >= 0) {
1081 var blockText = g_html_blocks[RegExp.$1];
1082 blockText = blockText.replace(/\$/g,"$$$$"); // Escape any dollar signs
1083 grafsOut[i] = grafsOut[i].replace(/~K\d+K/,blockText);
1087 return grafsOut.join("\n\n");
1091 var _EncodeAmpsAndAngles = function(text) {
1092 // Smart processing for ampersands and angle brackets that need to be encoded.
1094 // Ampersand-encoding based entirely on Nat Irons's Amputator MT plugin:
1095 // http://bumppo.net/projects/amputator/
1096 text = text.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g,"&");
1099 text = text.replace(/<(?![a-z\/?\$!])/gi,"<");
1105 var _EncodeBackslashEscapes = function(text) {
1107 // Parameter: String.
1108 // Returns: The string, with after processing the following backslash
1109 // escape sequences.
1112 // attacklab: The polite way to do this is with the new
1113 // escapeCharacters() function:
1115 // text = escapeCharacters(text,"\\",true);
1116 // text = escapeCharacters(text,"`*_{}[]()>#+-.!",true);
1118 // ...but we're sidestepping its use of the (slow) RegExp constructor
1119 // as an optimization for Firefox. This function gets called a LOT.
1121 text = text.replace(/\\(\\)/g,escapeCharacters_callback);
1122 text = text.replace(/\\([`*_{}\[\]()>#+-.!])/g,escapeCharacters_callback);
1127 var _DoAutoLinks = function(text) {
1129 text = text.replace(/<((https?|ftp|dict):[^'">\s]+)>/gi,"<a href=\"$1\">$1</a>");
1131 // Email addresses: <address@domain.foo>
1134 text = text.replace(/
1140 [-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+
1143 /gi, _DoAutoLinks_callback());
1145 text = text.replace(/<(?:mailto:)?([-.\w]+\@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,
1146 function(wholeMatch,m1) {
1147 return _EncodeEmailAddress( _UnescapeSpecialChars(m1) );
1155 var _EncodeEmailAddress = function(addr) {
1157 // Input: an email address, e.g. "foo@example.com"
1159 // Output: the email address as a mailto link, with each character
1160 // of the address encoded as either a decimal or hex entity, in
1161 // the hopes of foiling most address harvesting spam bots. E.g.:
1163 // <a href="mailto:foo@e
1164 // xample.com">foo
1165 // @example.com</a>
1167 // Based on a filter by Matthew Wickline, posted to the BBEdit-Talk
1168 // mailing list: <http://tinyurl.com/yu7ue>
1171 // attacklab: why can't javascript speak hex?
1172 function char2hex(ch) {
1173 var hexDigits = '0123456789ABCDEF';
1174 var dec = ch.charCodeAt(0);
1175 return(hexDigits.charAt(dec>>4) + hexDigits.charAt(dec&15));
1179 function(ch){return "&#"+ch.charCodeAt(0)+";";},
1180 function(ch){return "&#x"+char2hex(ch)+";";},
1181 function(ch){return ch;}
1184 addr = "mailto:" + addr;
1186 addr = addr.replace(/./g, function(ch) {
1188 // this *must* be encoded. I insist.
1189 ch = encode[Math.floor(Math.random()*2)](ch);
1190 } else if (ch !=":") {
1191 // leave ':' alone (to spot mailto: later)
1192 var r = Math.random();
1193 // roughly 10% raw, 45% hex, 45% dec
1195 r > .9 ? encode[2](ch) :
1196 r > .45 ? encode[1](ch) :
1203 addr = "<a href=\"" + addr + "\">" + addr + "</a>";
1204 addr = addr.replace(/">.+:/g,"\">"); // strip the mailto: from the visible part
1210 var _UnescapeSpecialChars = function(text) {
1212 // Swap back in all the special characters we've hidden.
1214 text = text.replace(/~E(\d+)E/g,
1215 function(wholeMatch,m1) {
1216 var charCodeToReplace = parseInt(m1);
1217 return String.fromCharCode(charCodeToReplace);
1224 var _Outdent = function(text) {
1226 // Remove one level of line-leading tabs or spaces
1229 // attacklab: hack around Konqueror 3.5.4 bug:
1230 // "----------bug".replace(/^-/g,"") == "bug"
1232 text = text.replace(/^(\t|[ ]{1,4})/gm,"~0"); // attacklab: g_tab_width
1234 // attacklab: clean up hack
1235 text = text.replace(/~0/g,"")
1240 var _Detab = function(text) {
1241 // attacklab: Detab's completely rewritten for speed.
1242 // In perl we could fix it by anchoring the regexp with \G.
1243 // In javascript we're less fortunate.
1245 // expand first n-1 tabs
1246 text = text.replace(/\t(?=\t)/g," "); // attacklab: g_tab_width
1248 // replace the nth with two sentinels
1249 text = text.replace(/\t/g,"~A~B");
1251 // use the sentinel to anchor our regex so it doesn't explode
1252 text = text.replace(/~B(.+?)~A/g,
1253 function(wholeMatch,m1,m2) {
1254 var leadingText = m1;
1255 var numSpaces = 4 - leadingText.length % 4; // attacklab: g_tab_width
1257 // there *must* be a better way to do this:
1258 for (var i=0; i<numSpaces; i++) leadingText+=" ";
1264 // clean up sentinels
1265 text = text.replace(/~A/g," "); // attacklab: g_tab_width
1266 text = text.replace(/~B/g,"");
1273 // attacklab: Utility functions
1277 var escapeCharacters = function(text, charsToEscape, afterBackslash) {
1278 // First we have to escape the escape characters so that
1279 // we can build a character class out of them
1280 var regexString = "([" + charsToEscape.replace(/([\[\]\\])/g,"\\$1") + "])";
1282 if (afterBackslash) {
1283 regexString = "\\\\" + regexString;
1286 var regex = new RegExp(regexString,"g");
1287 text = text.replace(regex,escapeCharacters_callback);
1293 var escapeCharacters_callback = function(wholeMatch,m1) {
1294 var charCodeToEscape = m1.charCodeAt(0);
1295 return "~E"+charCodeToEscape+"E";
1298 } // end of Attacklab.showdown.converter
1301 // Version 0.9 used the Showdown namespace instead of Attacklab.showdown
1302 // The old namespace is deprecated, but we'll support it for now:
1303 var Showdown = Attacklab.showdown;
1305 // If anyone's interested, tell the world that this file's been loaded
1306 if (Attacklab.fileLoaded) {
1307 Attacklab.fileLoaded("showdown.js");