PDA

View Full Version : RSS feed doesn't include markdown


kristarella
11-11-2007, 10:02 PM
I currently have my RSS feed showing full sized images and the image info (description). I've allowed markdown in the image info, but links etc don't show up in my feed reader.

Is there a way to fix that?

GeoS
11-12-2007, 07:25 AM
In the past many RSS feed readers had problems with reading HTML from feeds that is why we dont use it.
At least till next release there wont be option to use more HTML then is now (<img> with image).

austriaka
11-12-2007, 09:59 AM
thank you for reporting, I repaired the Markdown for the 1.7 release.

HTML is generally disabled in the feeds (all images and links beside the thumbnail or blog image and the link to it) because many people reported feedreader issues with HTML feeds.
You can change this by hacking the file include/functions_feeds.php: look out for strip_tags($body) and replace it with strip_tags($body, '<a>') for links or strip_tags($body, '<a>,<img>') for links and further images (always use absolute paths for links and images!).
And take care, strip_tags($body) is there several times, for the different feed types and languages

kristarella
12-12-2007, 02:54 AM
Sweet - thankyou!