if i.startswith('<a'):
end = i.index('</a>') + 4
links += [i[0:end]]
- i = i[end:]
+ i = i[end:].lstrip()
else:
firstAndRest = i.split(None, 1)
if len(firstAndRest):
##! "<a href=\"javascript:alert('hello!');\">Say hello</a> annotated" \
##! "files"
##! M_LINKS_NAVBAR2 = \
-##! "pages <a href=\"mailto:mosra@centrum.cz\">This is an e-mail</a> namespaces" \
+##! "pages <a href=\"mailto:mosra@centrum.cz\">This is an e-mail</a> <a href=\"#\">Another link</a> namespaces" \
##! "<a href=\"https://github.com/mosra/m.css\">GitHub</a>"
##! M_PAGE_FINE_PRINT =
##! M_THEME_COLOR =
<a href="pages.html">Pages</a>
<ol>
<li><a href="mailto:mosra@centrum.cz">This is an e-mail</a></li>
+ <li><a href="#">Another link</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
</ol>
</li>
</div>
</article></main>
</body>
-</html>
\ No newline at end of file
+</html>