add _really_ basic multilanguage support. I'll come back for css later
parent
31aa09d6f6
commit
a89511985f
@ -0,0 +1,13 @@
|
|||||||
|
define(function () {
|
||||||
|
return [
|
||||||
|
"Javascript javascript",
|
||||||
|
"Python python",
|
||||||
|
"Mixed_HTML htmlmixed",
|
||||||
|
].map(function (line) {
|
||||||
|
var kv = line.split(/\s/);
|
||||||
|
return {
|
||||||
|
language: kv[0].replace(/_/g, ' '),
|
||||||
|
mode: kv[1]
|
||||||
|
};
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue