소스 검색

fix: Latex export block command shortcut gives error because of
missing space

close #2811

Tienson Qin 4 년 전
부모
커밋
2460e16a34
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/frontend/commands.cljs

+ 1 - 1
src/main/frontend/commands.cljs

@@ -148,7 +148,7 @@
                  (util/format "\n#+END_%s" (string/upper-case type)))
          template (str
                    left
-                   (if optional (str (if (= format :markdown) "" " ") optional) "")
+                   (if optional (str " " optional) "")
                    "\n"
                    right)
          backward-pos (if (= type "src")