Make “thumbnails” a bit bigger in HTML/RSS generators.

This commit is contained in:
tastytea 2020-10-17 05:13:48 +02:00
parent 56b3f1901a
commit a37cf52cda
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ void write_html(ostream &out, const vector<entry_type> &entries)
{
out << " <p><strong>Screenshot:</strong><br>"
<< "<a href=\"" << entry.screenshot_filepath << "\"><img src=\""
<< entry.screenshot_filepath << R"(" height="100"></a></p>)"
<< entry.screenshot_filepath << R"(" height="200"></a></p>)"
<< '\n';
}
out << " </details>\n";

View File

@ -179,7 +179,7 @@ void write_rss(ostream &out, const vector<entry_type> &entries,
entry.screenshot_filepath;
item_description += "\"><img src=\"";
(item_description += baseurl) += entry.screenshot_filepath;
(item_description += R"(" height="100"></a></p>)") += '\n';
(item_description += R"(" height="200"></a></p>)") += '\n';
}
write_line(out, 6, "description",
"<![CDATA[" + item_description + "]]>");