Fix tag order
This commit is contained in:
parent
6d54390f51
commit
d6d145e7c5
|
@ -304,6 +304,6 @@ class LexiconArticle:
|
||||||
next_link = ("<a {0.link_class} href=\"{0.title_filesafe}.html\">Next →</a>".format(
|
next_link = ("<a {0.link_class} href=\"{0.title_filesafe}.html\">Next →</a>".format(
|
||||||
next_article)
|
next_article)
|
||||||
if next_article is not None else "")
|
if next_article is not None else "")
|
||||||
content += "<table><tr>\n<td>{}</td>\n<td>{}</td>\n</table></tr>\n".format(
|
content += "<table><tr>\n<td>{}</td>\n<td>{}</td>\n</tr></table>\n".format(
|
||||||
prev_link, next_link)
|
prev_link, next_link)
|
||||||
return content
|
return content
|
||||||
|
|
Loading…
Reference in New Issue