<div dir="ltr">By default the variable is initialized to #\' <br>If I want to change it to #\" via local binding I still get the single quotes in the resulting string.<br><br>(let ((*attribute-quote-char* #\"))<br>
  (with-html-output-to-string (*standard-output* nil :prologue nil :indent nil)<br>    (:html <br>     (:head <br>      (:title "title")<br>      (:meta :name "DESCRIPTION" :content "description")<br>
      (:meta :name "KEYWORDS" :content "keywords")))))<br><br>I get:<br>"<html><head><title>title</title><meta name='DESCRIPTION' content='description' /><meta name='KEYWORDS' content='keywords' /></head></html>"<br>
<br>Is it possible to make a local new binding or I should change it only globally?<br><br>Thank you,<br>Andrew<br></div>