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.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | feeds_flickr_striphtml.patch | 744 bytes | screenage |
Comments
Comment #1
domesticat commentedNot 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);Comment #2
screenage commentedI made a patch, which also strips the decoded HTML