whitespace in html quasiquote variables
Anne Ogborn <[email protected]>
| Newsgroups | gmane.comp.ai.prolog.swi |
|---|---|
| Message-ID | <[email protected]> |
This
section(Name) -->
html({|html(Name)||
<div>Name</div>|}).
does what one expects. <
section(Name) -->
html({|html(Name)||
<div>Name
</div>|}).
puts <div>Name</div> in the output
Since whitespace usually isn't significant in HTML I wouldn't have expected this behavior.