RSS and Images

local function viewWebPage(event) system.openURL( story.link ) end -- now we write out the story body, which likely has HTML code in it to a -- temporary file that we will load back in to our web view. local path = system.pathForFile( "story.html", system.TemporaryDirectory ) -- io.open opens a file at path. returns nil if no file found local fh, errStr = io.open( path, "w" ) -- -- Write out the required headers to make sure the content fits into our -- window and then dump the body. -- if fh then print( "Created file" ) fh:write("\<!doctype html\>\n\<html\>\n\<head\>\n\<meta charset=\"utf-8\"\>") fh:write("\<meta name=\"viewport\" content=\"width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;\"/\>\n") fh:write("\<style type=\"text/css\"\>\n html { -webkit-text-size-adjust: none; font-family: HelveticaNeue-Light, Helvetica, Droid-Sans, Arial, san-serif; font-size: 1.1em; } h1 {font-size:1.25em;} p {font-size:0.9em; } \</style\>") fh:write("\</head\>\n\<body\>\n") if story.title then fh:write("\<h1\>" .. story.title .. "\</h1\>\n") end if story.link then local videoID = story.link:sub(32, 42) print(videoID) fh:write([[\<iframe width="300" height="225" src="http://www.youtube.com/embed/]] .. videoID .. [[?html5=1" frameborder="0" allowfullscreen\>\</iframe\>]]) end if story.content\_encoded then fh:write( story.content\_encoded) elseif story.description then fh:write(story.description) end fh:write( "\n\</body\>\n\</html\>\n" ) io.close( fh ) else print( "Create file failed!" ) end&nbsp;

Hello Corona Community
I have a question about rss codes. Right now I am focused on Business App sample of Corona. However I couldn’t find any code for showing pictures from RSS. It can get links code from rss. There is no problem about it at least. When I looked video importing section, I noticed html codes in these codes. However I couldn’t solve how I can customize each picture which comes from rss with code. 
 
 
How can I import images with their codes from RSS source? (Links, sizes etc) 
 
Thanks

(The case is I have pictures with links or javascript or html (and some of them without) and I want to import them same as from my internet site. I put to rss (Drupal based site) there is no problem however I stucked on Corona section.)