[ Index ]

PHP Cross Reference of MyBB

title

Body

[close]

/admin/jscripts/codepress/languages/ -> mybb.js (source)

   1  /*
   2   * CodePress regular expressions for HTML syntax highlighting
   3   */
   4  
   5  // HTML
   6  Language.syntax = [
   7      { input : /&lt;!(DOCTYPE)(.*?)&gt;/g, output: '<b>&lt;!<big>$1$2</big>&gt;</b>'},
   8      { input : /(&lt;style.*?&gt;)(.*?)(&lt;\/style&gt;)/g, output : '<em>$1</em><em>$2</em><em>$3</em>' }, // style tags
   9      { input : /(&lt;script.*?&gt;)(.*?)(&lt;\/script&gt;)/g, output : '<strong>$1</strong><tt>$2</tt><strong>$3</strong>' }, // script tags
  10      { input : /&lt;([^!]*?)&gt;/g, output : '<b>&lt;<a>$1</a>&gt;</b>'    }, // all tags
  11      { input : /([a-zA-Z]+)=(".*?")/g, output : '<i>$1=</i><s>$2</s>' }, // atributes double quote
  12      { input : /=('.*?')/g, output : '=<s>$1</s>' }, // atributes single quote
  13      { input : /(&lt;!--.*?--&gt.)/g, output : '<ins>$1</ins>' }, // comments 
  14      { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<a>//$2</a>$3' }, // comments //
  15      { input : /\b(alert|window|document|break|continue|do|for|new|this|void|case|default|else|function|return|typeof|while|if|label|switch|var|with|catch|boolean|int|try|false|throws|null|true|goto)\b/g, output : '<i>$1</i>' }, // script reserved words 
  16      { input: /(\{\$[a-zA-Z0-9_\[\]'"]+)\-&gt;([a-zA-Z0-9_\-\$\[\]'"]+\}?)/g, output: '<cite>$1<s>-&gt;</s>$2</cite>'}, // class based variables
  17      { input: /(\{?\$[a-zA-Z0-9_\-\$\[\]'"]+\}?)/g, output: '<cite>$1</cite>'}, // variables in templates
  18      { input: /&amp;(amp|gt|lt|raquo|laquo);/g, output: '<small>&amp;$1;</small>'}
  19  ]
  20  
  21  Language.snippets = [
  22      { input : 'aref', output : '<a href="$0"></a>' },
  23      { input : 'h1', output : '<h1>$0</h1>' },
  24      { input : 'h2', output : '<h2>$0</h2>' },
  25      { input : 'h3', output : '<h3>$0</h3>' },
  26      { input : 'h4', output : '<h4>$0</h4>' },
  27      { input : 'h5', output : '<h5>$0</h5>' },
  28      { input : 'h6', output : '<h6>$0</h6>' },
  29      { input : 'html', output : '<html>\n\t$0\n</html>' },
  30      { input : 'head', output : '<head>\n\t<meta http-equiv="content-type" content="text/html; charset=utf-8" />\n\t<title>$0</title>\n\t\n</head>' },
  31      { input : 'img', output : '<img src="$0" alt="" />' },
  32      { input : 'input', output : '<input name="$0" id="" type="" value="" />' },
  33      { input : 'label', output : '<label for="$0"></label>' },
  34      { input : 'legend', output : '<legend>\n\t$0\n</legend>' },
  35      { input : 'link', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },        
  36      { input : 'base', output : '<base href="$0" />' }, 
  37      { input : 'body', output : '<body>\n\t$0\n</body>' }, 
  38      { input : 'css', output : '<link rel="stylesheet" href="$0" type="text/css" media="screen" charset="utf-8" />' },
  39      { input : 'div', output : '<div>\n\t$0\n</div>' },
  40      { input : 'divid', output : '<div id="$0">\n\t\n</div>' },
  41      { input : 'dl', output : '<dl>\n\t<dt>\n\t\t$0\n\t</dt>\n\t<dd></dd>\n</dl>' },
  42      { input : 'fieldset', output : '<fieldset>\n\t$0\n</fieldset>' },
  43      { input : 'form', output : '<form action="$0" method="" name="">\n\t\n</form>' },
  44      { input : 'meta', output : '<meta name="$0" content="" />' },
  45      { input : 'p', output : '<p>$0</p>' },
  46      { input : 'script', output : '<script type="text/javascript" language="javascript" charset="utf-8">\n\t$0\t\n</script>' },
  47      { input : 'scriptsrc', output : '<script src="$0" type="text/javascript" language="javascript" charset="utf-8"></script>' },
  48      { input : 'span', output : '<span>$0</span>' },
  49      { input : 'table', output : '<table border="$0" cellspacing="" cellpadding="">\n\t<tr><th></th></tr>\n\t<tr><td></td></tr>\n</table>' },
  50      { input : 'style', output : '<style type="text/css" media="screen">\n\t$0\n</style>' }
  51  ]
  52      
  53  Language.complete = [
  54      { input : '\'',output : '\'$0\'' },
  55      { input : '"', output : '"$0"' },
  56      { input : '(', output : '\($0\)' },
  57      { input : '[', output : '\[$0\]' },
  58      { input : '{', output : '{$0}' }        
  59  ]
  60  
  61  Language.shortcuts = []


Generated: Tue Oct 8 19:19:50 2013 Cross-referenced by PHPXref 0.7.1