new entry

This commit is contained in:
Trilarion
2019-07-08 13:46:51 +02:00
parent 66f66ae6ba
commit c78ab40010
8 changed files with 57 additions and 27 deletions

View File

@ -445,6 +445,7 @@
"https://gitlab.com/veloren/veloren.git",
"https://gitlab.com/xonotic/xonotic.git",
"https://gitlab.gnome.org/GNOME/libxml2.git",
"https://gitlab.openrsc.com/open-rsc/Game.git",
"https://gitorious.org/turious/turious.git"
],
"svn": [

View File

@ -91,8 +91,8 @@ def update_readme_and_tocs(infos):
create_toc(title, file, infos_filtered)
update = ''.join(update)
# insert new text in the middle
text = start + "[comment]: # (start of autogenerated content, do not edit)\n" + update + "[comment]: # (end of autogenerated content)" + end
# insert new text in the middle (the \n before the second comment is necessary, otherwise Markdown displays it as part of the bullet list)
text = start + "[comment]: # (start of autogenerated content, do not edit)\n" + update + "\n[comment]: # (end of autogenerated content)" + end
# write to readme
write_text(readme_file, text)