0

我正在尝试将 html 文件生成到文件中。我正在使用 with-html-output-to-string,但我似乎无法弄清楚如何让该功能正常工作。我不确定是否应该使用文件流、with-open-file 以及如何使语法正常工作。我已经搞砸了一天,但代码只是没有运行。

4

1 回答 1

1
CL-USER> (who:with-html-output-to-string (out nil :prologue t :indent t)
         (:html
          (:head
           (:title "home"))
          (:body
           (:p "Hello cl."))))
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">

<html>
  <head>
    <title>home
    </title>
  </head>
  <body>
    <p>Hello cl.
    </p>
  </body>
</html>"
于 2015-08-03T02:03:58.350 回答