mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-06 06:08:40 +00:00
34 lines
810 B
JavaScript
34 lines
810 B
JavaScript
|
// 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 $][inner&tag \\pi][delim $]");
|
||
|
})();
|