Fixes: Possible to create blocks inside document title

This commit is contained in:
Tom Moor
2018-02-07 22:29:33 -08:00
parent 872ca56d99
commit b0db7f29d3
2 changed files with 10 additions and 6 deletions

View File

@ -40,6 +40,10 @@ export default function MarkdownShortcuts() {
const { value } = change;
if (value.isExpanded) return;
const { startBlock, startOffset } = value;
// no markdown shortcuts work in headings
if (startBlock.type.match(/heading/)) return;
const chars = startBlock.text.slice(0, startOffset).trim();
const type = this.getType(chars);