dear D-Space developer/user<br><br>i have a question:<br><br>i have some html code in my Database in the description field, of course the html have been transformed in plain text.<br>so the database entry is:<br>&lt;h3&gt; hello &lt;/h3&gt; &lt;/br&gt;&lt;p&gt;it is a description &lt;p&gt;<br>
<br>when DSpace shows the database content it actually shows the text:<br>&lt;h3&gt; hello &lt;/h3&gt; &lt;/br&gt;&lt;p&gt;it is a description &lt;p&gt;<br><br>while i wuold like to say the html resoults instead:<br><br><b>hello</b><br>
it is a description<br><br><br><br>How can i do it?<br><br>i see two possibilities:<br><br>-  Overwrite the java class that take data from the database and send them to manakin in order to decode the html <br>   <br><br>- working at Mankin level(but it seems me pretty much more complicated):in the file DIM-Handler.xsl<br>
<br> &lt;xsl:if test=&quot;dim:field[@element=&#39;description&#39; and not(@qualifier)]&quot;&gt;<br>             ...<br>                        &lt;xsl:copy-of select=&quot;./node()&quot;/&gt;     &lt;-- call some html decoder here<br>
             ...          <br>            &lt;/xsl:if&gt;<br><br><br>I&#39;m sure i&#39;m not the first one who had this need... and i can see some security issues concerned with the solution<br>can somebody give me some indication or &quot;a solution&quot;?<br>
<br>Thank you very much<br>Antonio<br><br>