Displaying Wordpress feed

How can I display a Wordpress Post feed in an Htmlviewer? I am using the address right now and it displays the post, but also the full website and that’s not what I want:

HTMLBlogFeed.LoadURL("https://storycraft-for-writers.com/category/story-and-myth-magazine/")

Simply adding “feed” at the end of this address gives me the raw feed, which is not what I want either:

HTMLBlogFeed.LoadURL("https://storycraft-for-writers.com/category/story-and-myth-magazine/feed/") because that shows the post as 1 block of text:

Is there a better way to do this?

Feed is actually an XML file with RSS identification.

I think there is no direct way to use it with HTMLviewer, you need to access the /feed/ XML and handle it yourself.

Here is the XML for the mentioned page /feed/:

Show Feed Code
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>StoryCraft New Edition</title>
	<atom:link href="https://storycraft-for-writers.com/category/story-and-myth-magazine/feed/" rel="self" type="application/rss+xml" />
	<link>https://storycraft-for-writers.com</link>
	<description>Use the Jarvis method to write compelling screenplays and novels</description>
	<lastBuildDate>Fri, 27 Oct 2023 10:33:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3.2</generator>
	<item>
		<title>Volume I, Issue I &#8212; May, 1996</title>
		<link>https://storycraft-for-writers.com/volume-i-issue-i-may-1996/</link>
		
		<dc:creator><![CDATA[André van Haren]]></dc:creator>
		<pubDate>Fri, 27 Oct 2023 10:28:58 +0000</pubDate>
				<category><![CDATA[Story and Myth magazine]]></category>
		<guid isPermaLink="false">https://storycraft-for-writers.com/?p=966</guid>

					<description><![CDATA[On the Jarvis Method Allow Me, John Jarvis, to Introduce Myself&#8230; Over the next months &#8211; and, I hope, years &#8211; you&#8217;re going to be hearing a lot from me. I&#8217;m going to be cramming down your throat&#8230;I mean, discussing&#8230;my ideas about writing fiction. My ideas are known as The Jarvis Method and they are [&#8230;]]]></description>
		
		
		
			</item>
		<item>
		<title>About the Story and Myth posts&#8230;</title>
		<link>https://storycraft-for-writers.com/about-the-story-and-myth-posts/</link>
		
		<dc:creator><![CDATA[André van Haren]]></dc:creator>
		<pubDate>Fri, 27 Oct 2023 10:25:11 +0000</pubDate>
				<category><![CDATA[Story and Myth magazine]]></category>
		<guid isPermaLink="false">https://storycraft-for-writers.com/?p=962</guid>

					<description><![CDATA[The posts featured here are curated from the “Story and Myth” magazine, originally published from May 1996 to July 1997. Despite the cessation of updates and the addition of new posts, these articles remain a valuable resource. They enrich the StoryCraft New Edition software by highlighting various facets of the Jarvis Method, which forms the [&#8230;]]]></description>
		
		
		
			</item>
	</channel>
</rss>

Thanks, how did you get this code?

Used Chrome to visit: StoryCraft New Edition