Merge pull request #1605 from tamo/patch-1

This commit is contained in:
Max Wu 2021-07-09 15:04:18 +08:00 committed by GitHub
commit 4b78202494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3137,7 +3137,7 @@ function checkInContainerSyntax () {
function matchInContainer (text) { function matchInContainer (text) {
var match var match
match = text.match(/:{3,}/g) match = text.match(/^:::/gm)
if (match && match.length % 2) { if (match && match.length % 2) {
return true return true
} else { } else {