Merge pull request #492 from vanillajonathan/patch-1

pull/494/head
Jeroen Akkerman 2 years ago committed by GitHub
commit c27f5d1d23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1143,30 +1143,12 @@ function _toggleHeading(cm, direction, size) {
}
}
} else {
if (size == 1) {
if (currHeadingLevel <= 0) {
text = '# ' + text;
} else if (currHeadingLevel == size) {
text = text.substr(currHeadingLevel + 1);
} else {
text = '# ' + text.substr(currHeadingLevel + 1);
}
} else if (size == 2) {
if (currHeadingLevel <= 0) {
text = '## ' + text;
} else if (currHeadingLevel == size) {
text = text.substr(currHeadingLevel + 1);
} else {
text = '## ' + text.substr(currHeadingLevel + 1);
}
if (currHeadingLevel <= 0) {
text = '#'.repeat(size) + ' ' + text;
} else if (currHeadingLevel == size) {
text = text.substr(currHeadingLevel + 1);
} else {
if (currHeadingLevel <= 0) {
text = '### ' + text;
} else if (currHeadingLevel == size) {
text = text.substr(currHeadingLevel + 1);
} else {
text = '### ' + text.substr(currHeadingLevel + 1);
}
text = '#'.repeat(size) + ' ' + text.substr(currHeadingLevel + 1);
}
}

Loading…
Cancel
Save