Galileo

 view release on metacpan or  search on metacpan

lib/Galileo/files/public/assets/pagedown/Markdown.Converter.js  view on Meta::CPAN

571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
        var tag = wholeMatch.replace(/(.)<\/?code>(?=.)/g, "$1`");
        tag = escapeCharacters(tag, wholeMatch.charAt(1) == "!" ? "\\`*_/" : "\\`*_"); // also escape slashes in comments to prevent autolinking there -- http://meta.stackexchange.com/questions/95987
        return tag;
    });
 
    return text;
}
 
function _DoAnchors(text) {
    //
    // Turn Markdown link shortcuts into XHTML <a> tags.
    //
    //
    // First, handle reference-style links: [link text] [id]
    //
 
    /*
    text = text.replace(/
        (                           // wrap whole match in $1
            \[
            (



( run in 0.550 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )