Commit e5af211fdcd1383027c12067cf26cca47331e778

cdagnino 2015-01-11T20:05:59

Changed indentation from spaces to tabs

diff --git a/components.js b/components.js
index 644b393..d4a9ae0 100644
--- a/components.js
+++ b/components.js
@@ -113,9 +113,9 @@ var components = {
 			"owner": "multipetros"
 		},
 		"julia": {
-            "title": "julia",
-            "owner": "cdagnino"
-        },
+		"title": "julia",
+			"owner": "cdagnino"
+		},
 		"sql": {
 			"title": "SQL",
 			"owner": "multipetros"
diff --git a/components/prism-julia.js b/components/prism-julia.js
index 70d016b..32b840f 100644
--- a/components/prism-julia.js
+++ b/components/prism-julia.js
@@ -1,13 +1,13 @@
-Prism.languages.julia= { 
-    'comment': {
-        pattern: /(^|[^\\])#.*?(\r?\n|$)/g,
-        lookbehind: true
-    },
-    'string': /"""[\s\S]+?"""|'''[\s\S]+?'''|("|')(\\?.)*?\1/g,
-    'keyword' : /\b(abstract|baremodule|begin|bitstype|break|catch|ccall|const|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|import|importall|let|local|macro|module|print|println|quote|return|try|type|typealias|using|while)\b/g,
-    'boolean' : /\b(true|false)\b/g,
-    'number' : /\b-?(0[box])?(?:[\da-f]+\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/gi,
-    'operator' : /[-+]{1,2}|=?<|=?>|!|={1,2}|(&){1,2}|(&){1,2}|\|?\||\?|\*|\/|~|\^|%|\b(or|and|not)\b/g,
-    'ignore' : /&(lt|gt|amp);/gi,
-    'punctuation' : /[{}[\];(),.:]/g
+Prism.languages.julia= {
+	'comment': {
+		pattern: /(^|[^\\])#.*?(\r?\n|$)/g,
+		lookbehind: true
+	},
+	'string': /"""[\s\S]+?"""|'''[\s\S]+?'''|("|')(\\?.)*?\1/g,
+	'keyword' : /\b(abstract|baremodule|begin|bitstype|break|catch|ccall|const|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|import|importall|let|local|macro|module|print|println|quote|return|try|type|typealias|using|while)\b/g,
+	'boolean' : /\b(true|false)\b/g,
+	'number' : /\b-?(0[box])?(?:[\da-f]+\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/gi,
+	'operator' : /[-+]{1,2}|=?<|=?>|!|={1,2}|(&){1,2}|(&){1,2}|\|?\||\?|\*|\/|~|\^|%|\b(or|and|not)\b/g,
+	'ignore' : /&(lt|gt|amp);/gi,
+	'punctuation' : /[{}[\];(),.:]/g
 };
\ No newline at end of file