I'm using an embedded media field for the image, so I'm skipping the Description field in favor of using the Media:Description field for the body. The problem: it has escaped HTML in it. I've tried changing the Input Format on the processor options screen and I'm consistently getting the HTML displayed on the screen.

CommentFileSizeAuthor
#2 feeds_flickr_striphtml.patch744 bytesscreenage

Comments

domesticat’s picture

Status: Active » Needs work

Not sure if this is the Drupal-y way of doing things, but I added html_entity_decode() to this line in FeedsFlickrParser.inc and things are much happier now.

$item['media_desc'] = html_entity_decode($enclosure->description);

screenage’s picture

StatusFileSize
new744 bytes

I made a patch, which also strips the decoded HTML