Skip to content

Instantly share code, notes, and snippets.

@metafeather
Created October 6, 2009 12:42
Show Gist options
  • Save metafeather/202983 to your computer and use it in GitHub Desktop.
Save metafeather/202983 to your computer and use it in GitHub Desktop.
// Extracted from SyntaxHighlighter
MultiLineCComments : new RegExp('/\\*[\\s\\S]*?\\*/', 'gm'),
SingleLineCComments : new RegExp('//.*$', 'gm'),
SingleLinePerlComments : new RegExp('#.*$', 'gm'),
DoubleQuotedString : new RegExp('"(?:\\.|(\\\\\\")|[^\\""\\n])*"','g'),
SingleQuotedString : new RegExp("'(?:\\.|(\\\\\\')|[^\\''\\n])*'", 'g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment