Make “thumbnails” a bit bigger in HTML/RSS generators.
This commit is contained in:
parent
56b3f1901a
commit
a37cf52cda
|
@ -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";
|
||||
|
|
|
@ -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 + "]]>");
|
||||
|
|
Reference in New Issue
Block a user