mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
833 B
33 lines
833 B
// CodeMirror, copyright (c) by Marijn Haverbeke and others |
|
// Distributed under an MIT license: http://codemirror.net/LICENSE |
|
|
|
(function() { |
|
CodeMirror.defineMode("markdown_with_stex", function(){ |
|
var inner = CodeMirror.getMode({}, "stex"); |
|
var outer = CodeMirror.getMode({}, "markdown"); |
|
|
|
var innerOptions = { |
|
open: '$', |
|
close: '$', |
|
mode: inner, |
|
delimStyle: 'delim', |
|
innerStyle: 'inner' |
|
}; |
|
|
|
return CodeMirror.multiplexingMode(outer, innerOptions); |
|
}); |
|
|
|
var mode = CodeMirror.getMode({}, "markdown_with_stex"); |
|
|
|
function MT(name) { |
|
test.mode( |
|
name, |
|
mode, |
|
Array.prototype.slice.call(arguments, 1), |
|
'multiplexing'); |
|
} |
|
|
|
MT( |
|
"stexInsideMarkdown", |
|
"[strong **Equation:**] [delim&delim-open $][inner&tag \\pi][delim&delim-close $]"); |
|
})();
|
|
|