diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-09-11 16:55:24 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-09-11 16:55:24 +0800 |
commit | 10a86e99ea54d34da882a03576ed92f6c50e0536 (patch) | |
tree | 9dafa04e22f20bebf05dc2c6cb280a430436eb32 | |
parent | 7a9977d2c063fff718c052b2e8519c0c758435b3 (diff) |
style: Reformat comments
-rw-r--r-- | src/editor.mjs | 4 |
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 {{{ |
107 | const aliasesForMapOptions = {} | 107 | const aliasesForMapOptions = {} |
108 | const defaultApply = './dist/default.yml' | 108 | const defaultApply = './dist/default.yml' |
109 | fetch(defaultApply) | 109 | fetch(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 {{{ |
133 | const insideCodeblockForMap = (token) => | 133 | const insideCodeblockForMap = (token) => |
134 | token.state.overlay.codeBlock && !token.string.match(/^````*/) | 134 | token.state.overlay.codeBlock && !token.string.match(/^````*/) |
135 | // }}} | 135 | // }}} |