Add getState() support for code (and yes, CodeMirror intenrally labels it as "comment")

pull/103/head
Dave Brondsema 9 years ago
parent 1c369a3cc9
commit ab83c5a5f6

@ -88,6 +88,8 @@ function getState(cm, pos) {
ret.quote = true;
} else if(data === 'strikethrough') {
ret.strikethrough = true;
} else if(data === 'comment') {
ret.code = true;
}
}
return ret;

Loading…
Cancel
Save