Search code examples
htmlbold

Html tags inside of double quote


I need to bold the words inside of double quotes.

title="Character needs to be bold"

When i put <b></b> inside of title's double quote. it just displays them as it is.

So, Is there any way i can bold the characters inside the double quotes?


Solution

  • There is a way depending on the node you are using the 'title' attribute under. See if it has a 'format' attribute as by default the title is set to 'text'. If so, set the format="html", then you will be able to use &lt;b&gt; within your title.