MCPcopy Create free account
hub / github.com/TruthHun/BookStack / css

Function css

static/editor.md/lib/codemirror/mode/htmlmixed/htmlmixed.js:77–85  ·  view source on GitHub ↗
(stream, state)

Source from the content-addressed store, hash-verified

75 state.localMode.token(stream, state.localState));
76 }
77 function css(stream, state) {
78 if (stream.match(/^<\/\s*style\s*>/i, false)) {
79 state.token = html;
80 state.localState = state.localMode = null;
81 return null;
82 }
83 return maybeBackup(stream, /<\/\s*style\s*>/,
84 cssMode.token(stream, state.localState));
85 }
86
87 return {
88 startState: function() {

Callers 1

nprogress.jsFile · 0.85

Calls 1

maybeBackupFunction · 0.70

Tested by

no test coverage detected