aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-09-11 16:55:24 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-09-11 16:55:24 +0800
commit10a86e99ea54d34da882a03576ed92f6c50e0536 (patch)
tree9dafa04e22f20bebf05dc2c6cb280a430436eb32 /src
parent7a9977d2c063fff718c052b2e8519c0c758435b3 (diff)
style: Reformat comments
Diffstat (limited to 'src')
-rw-r--r--src/editor.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editor.mjs b/src/editor.mjs
index 77211f6..1544589 100644
--- a/src/editor.mjs
+++ b/src/editor.mjs
@@ -103,7 +103,7 @@ class Suggestion {
103 } 103 }
104} 104}
105// }}} 105// }}}
106// {{{ Aliases for map options 106// Aliases for map options {{{
107const aliasesForMapOptions = {} 107const aliasesForMapOptions = {}
108const defaultApply = './dist/default.yml' 108const defaultApply = './dist/default.yml'
109fetch(defaultApply) 109fetch(defaultApply)
@@ -129,7 +129,7 @@ fetch(defaultApply)
129// return true 129// return true
130// } 130// }
131// }}} 131// }}}
132// Check if current token is inside code block {{{ 132// FUNCTION Check if current token is inside code block {{{
133const insideCodeblockForMap = (token) => 133const insideCodeblockForMap = (token) =>
134 token.state.overlay.codeBlock && !token.string.match(/^````*/) 134 token.state.overlay.codeBlock && !token.string.match(/^````*/)
135// }}} 135// }}}