I wonder if following two statements should produce the same result:
(with-html-output-to-string (*standard-output* nil :indent t)
(:p "text"))
and
(with-html-output-to-string (*standard-output* nil :indent t)
(:p (str (concatenate 'string "te" "xt"))))
So far the first statement gives:
"
<p>
text
</p>"
The second:
"
<p>text
</p>"
What happens to the indentation in the second case?
I am using cl-who 0.11.1 with sblc 1.0.37 on Linux
Thank you,
Andrei