【发布时间】:2013-08-12 10:35:21
【问题描述】:
如果我的代码如下所示:
(apply + 0
[1 2 3 4])
我把它通过阅读器,它变成了
(apply + 0 [1 2 3 4]) 和格式(回车和空格)丢失
有没有办法在读取时保存代码的格式?
例如:
(fact [{:type :section
:title "Normal Operation"
:tag "normal-operation"}]
"The most straightforward code is one where no issues raised. This
can be seen in Example {{ribol-normal-eq}} below:"
[{:type :image :href "ribol-normal.png"}]
[[{:tag "ribol-normal-eq"}]]
(manage ;; L2
[1 2 (manage 3)]) ;; L1 and L0
=> [1 2 3]
转化为:
1 - 正常运行
最直接的代码是没有问题的代码。这 见下例1.1:
[[ribol-normal.png]]
1.1
(manage ;; L2
[1 2 (manage 3)]) ;; L1 and L0
=> [1 2 3]
【问题讨论】:
标签: clojure