Hey guys,
Running into a small problem, dunno if I’m doing things right.
Styled XML using CDATA and it appears fine in Plex/Web but not in android.
In android it shows all the styling asif it were text.
Below is a small snippet.
Appreciate your inputs and advice on the best way to style xml, xslt?
Thanks.
<rss version="2.0">
<channel>
<title>"Music"</title>
<description>"Albums"</description>
<item>
<title><! [ CDATA [ <span style='text-align:center;color:#FF9800;font-weight:bold;'> ] ]>Madonna< ! [ CDATA [ </span> ] ] ></title>
<description>< ! [CDATA [ <span style='text-align:center;color:#FF9800;font-weight:bold;' > ] ] >Like a virgin!< ![ CDATA [ </span> ] ] ></description>
</item>
<item>
<title>< ! [ CDATA [ ] ] > Prince < ! [ CDATA [ ] ] ></title>
<description>Musicology</description>
</item>
</channel>
</rss>````