Skip to content

Commit

Permalink
fix(copy-as/export): remove space between ``` and lang
Browse files Browse the repository at this point in the history
  • Loading branch information
RCmerci authored and tiensonqin committed Mar 20, 2023
1 parent 24bca58 commit e54d739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/frontend/handler/export/text.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
(let [level (dec (get *state* :current-level 1))]
(concatv
[(indent-with-2-spaces level) (raw-text "```")]
(when language [space (raw-text language)])
(when language [(raw-text language)])
[(newline* 1)]
(mapv raw-text lines)
[(indent-with-2-spaces level) (raw-text "```") (newline* 1)])))
Expand Down

0 comments on commit e54d739

Please sign in to comment.