I am trying to create an RSS feed that works out of the box without any advanced recipe tweaking, and the body will be mostly consisting of images. I am unable to get this to work. Here is a sample feed:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Title</title>
<link>https://test.com</link>
<description>Some description</description>
<item>
<title>Chapter 79</title>
<guid>4383</guid>
<description>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter 79</title>
</head>
<body>
<img src='https://img.path/1' alt='Page 0' /><img src='https://img.path/2' alt='Page 1' />
</body>
</html>
</description>
</item>
.
.
.
However, the generated book is empty, and none of the images are present. I have tried replacing description tag with content tag, still no juice. Can somebody help me here?