Refactor plugin

This commit is contained in:
hiro 2019-09-02 19:16:35 +02:00
parent 5fcae78213
commit 4e07d49bc0

View File

@ -26,7 +26,7 @@ class XmlToHtmlPlugin(Plugin):
for entry in items:
title = entry.findtext('title')
link = entry.findtext('link')
stream += "<h3><a href=\"" + link +"\">" + title + "</a></h3>"
stream += "<div class=\"row\"><h3><a href=\"" + link +"\">" + title + "</a></h3></div>"
return stream