次のようなコードがある場合:
(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]