Hi folks!
I am trying to get inline elements in the titles of my result page. The scan is on html files and the title tag is like this one:
<html xmlns="http://www.w3.org/1999/xhtml">
My problem: the result page represents the inline tags as a plain text instead to interpret them as an html markup. The markup of <b> and <sup> is escaped:
<a href="page_00003.htm?zoom_highlight=This+is+my+tit le">
How can I get inline tags in my result page titles?
I am trying to get inline elements in the titles of my result page. The scan is on html files and the title tag is like this one:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
(...)<title>This is my title <sup>333</sup> <b>bold text</b></title>
</head>My problem: the result page represents the inline tags as a plain text instead to interpret them as an html markup. The markup of <b> and <sup> is escaped:
<a href="page_00003.htm?zoom_highlight=This+is+my+tit le">
<span class="highlight">This</span> is <span class="highlight">my</span> <span class="highlight">title</span> <sup>333</sup> <b>bold text</b>
</a>How can I get inline tags in my result page titles?
Comment