Commit a288368eb51bd9692ae8e49071c88fe9c46863cc

Joe Gibson 2015-08-19T13:58:35

Just adding 'class-name' to list, not using insert method

diff --git a/components/prism-python.js b/components/prism-python.js
index a3171d7..187a60c 100644
--- a/components/prism-python.js
+++ b/components/prism-python.js
@@ -8,16 +8,13 @@ Prism.languages.python= {
 		pattern: /((^|\s)def[ \t]+)([a-zA-Z_][a-zA-Z0-9_]*(?=\())/g,
 		lookbehind: true
 	},
+	'class-name': {
+		pattern: /(class\s+)[a-z0-9_]+/i,
+		lookbehind: true
+	},
 	'keyword' : /\b(as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|pass|print|raise|return|try|while|with|yield)\b/,
 	'boolean' : /\b(True|False)\b/,
 	'number' : /\b-?(0[bo])?(?:(\d|0x[a-f])[\da-f]*\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i,
 	'operator' : /[-+]|<=?|>=?|!|={1,2}|&{1,2}|\|?\||\?|\*|\/|@|~|\^|%|\b(or|and|not)\b/,
 	'punctuation' : /[{}[\];(),.:]/
 };
-
-Prism.languages.insertBefore('python', 'keyword', {
-	'class-name': {
-		pattern: /(class\s+)[a-z0-9_]+/i,
-		lookbehind: true
-	}
-});