/**

* marked - a markdown parser
* Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
* https://github.com/chjj/marked
*/

(function()var block={newline:/^n+/,code:/^( {4+n*)+/,fences:noop,hr:/^( [-_]){3,} *(?:n+|$)/,heading:/^ *(#{1,6}) *([^n]+?) *#* *(?:n+|$)/,nptable:noop,lheading:/^(+)n *(=|-){2,} *(?:n+|$)/,blockquote:/^( *>[^n]+(n(?!def)+)n)+/,list:/^( *)(bull) [sS]+?(?:hr|def|n{2,}(?! )(?!1bull )n*|s*$)/,html:/^ *(?:comment *(?:n|s*$)|closed *(?:n{2,}|s*$)|closing *(?:n{2,}|s*$))/,def:/^ *[([^]]+)]: *<?([^s>]+)>?(?: +[“(]([^n]+))? *(?:n+|$)/,table:noop,paragraph:/^((?:+n?(?!hr|heading|lheading|blockquote|tag|def))+)n*/,text:/^+/};block.bullet=/(?:|d+.)/;block.item=/^( *)(bull) [^n]*(?:n(?!1bull )[^n]*)*/;block.item=replace(block.item,“gm”)(/bull/g,block.bullet)();block.list=replace(block.list)(/bull/g,block.bullet)(“hr”,“\n+(?=\1?(?: *){3,}(?:\n+|$))”)(“def”,“\n+(?=”block.def.source“)”)();block.blockquote=replace(block.blockquote)(“def”,block.def)();block._tag=“(?!(?:”+“a|em|strong|small|s|cite|q|dfn|abbr|data|time|code”+“|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo”+“|span|br|wbr|ins|del|img)\b)\w+(?!:/|*@)\b”;block.html=replace(block.html)(“comment”,/