aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/editor.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.mjs b/src/editor.mjs
index b93f9ba..67f0d6a 100644
--- a/src/editor.mjs
+++ b/src/editor.mjs
@@ -227,7 +227,7 @@ const insideCodeblockForMap = (anchor) => {
227 const content = cm.getLine(line) 227 const content = cm.getLine(line)
228 if (content === '```map') { 228 if (content === '```map') {
229 return true 229 return true
230 } else if (content === '```'){ 230 } else if (content === '```') {
231 return false 231 return false
232 } 232 }
233 line = line - 1 233 line = line - 1