: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror"], mod);
else // Plain browser env
})(function(CodeMirror) {
CodeMirror.defineMode("jinja2", function() {
var keywords = ["and", "as", "block", "endblock", "by", "cycle", "debug", "else", "elif",
"extends", "filter", "endfilter", "firstof", "for",
"endfor", "if", "endif", "ifchanged", "endifchanged",
"ifequal", "endifequal", "ifnotequal",
"endifnotequal", "in", "include", "load", "not", "now", "or",
"parsed", "regroup", "reversed", "spaceless",
"endspaceless", "ssi", "templatetag", "openblock",
"closeblock", "openvariable", "closevariable",
"openbrace", "closebrace", "opencomment",
"closecomment", "widthratio", "url", "with", "endwith",
"get_current_language", "trans", "endtrans", "noop", "blocktrans",
"endblocktrans", "get_available_languages",
"get_current_language_bidi", "plural"],
operator = /^[+\-*&%=<>!?|~^]/,
atom = ["true", "false"],
number = /^(\d[+\-\*\/])?\d+(\.\d+)?/;
keywords = new RegExp("((" + keywords.join(")|(") + "))\\b");
atom = new RegExp("((" + atom.join(")|(") + "))\\b");
function tokenBase (stream, state) {
if(!stream.skipTo("#}")) {
} else if (state.intag) {
if(stream.match(number)) {
if(stream.match(number)) {
if(ch == state.instring) {
} else if(ch == "'" || ch == '"') {
} else if(stream.match(state.intag + "}") || stream.eat("-") && stream.match(state.intag + "}")) {
} else if(stream.match(operator)) {
} else if(stream.match(sign)) {
if(stream.eat(" ") || stream.sol()) {
if(stream.match(keywords)) {
if(stream.match(number)) {
} else if (stream.eat("{")) {
if (ch = stream.eat("#")) {
if(!stream.skipTo("#}")) {
} else if (ch = stream.eat(/\{|%/)) {
startState: function () {
return {tokenize: tokenBase};
token: function (stream, state) {
return state.tokenize(stream, state);