Hi,<br>I&#39;m trying to make an interactive blog with the racket blog continue doc, and, when an user creates a new post or puts a comment, the result is displayed in a textarea, for keep the formatting ( for example the indentation of a piece of code ).<br>
<br>But textarea is not a really good solution, and i want to interpret code :<br>for example, if an user write <br>&quot;&lt;p&gt;My comment, visit &lt;a href=&quot;<a href="http://www.example.com">www.example.com</a>&quot;&gt;foo&lt;/a&gt;, this is good&lt;/p&gt;&quot; it creates a paragraph with a link.<br>
However, there is a big problem. I put this string into my sqlite database, and when i want to display it on the web page, it&#39;s via ,(post-display! a-blog a-post)<br>Into the database, &lt; is a true &lt;, but when it&#39;s written into the web page, &lt; become &amp;lt; and &gt; become &amp;gt; ... so I can&#39;t create links, put images ...<br>
<br>Can you explain me a way for to circumvent this problem ?<br><br>PS : i&#39;ve tryed to write a html file, and display it with a function into my web page, with ,(my-function! my-html-file), but this is the same problem, the code is not interpreted.<br>
<br>Thanks in advance,<br>-mw<br><br>