Fix and add some more people from #837
This commit is contained in:
parent
2ea1d794fe
commit
3321a9dde8
12 changed files with 22 additions and 4 deletions
2
_data/signed/Bogdan107.yaml
Normal file
2
_data/signed/Bogdan107.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Bogdan Pylypenko
|
||||
link: https://github.com/Bogdan107
|
2
_data/signed/Mesivo.yaml
Normal file
2
_data/signed/Mesivo.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Alex Shevchenko
|
||||
link: https://github.com/Mesivo
|
2
_data/signed/Michaoil.yaml
Normal file
2
_data/signed/Michaoil.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Michael Fiedler
|
||||
link: mailto:gmichaoil@gmail.com
|
2
_data/signed/SADIST80LVL.yaml
Normal file
2
_data/signed/SADIST80LVL.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Mark Ataev
|
||||
link: mailto:markmarkovich1997@gmail.com
|
2
_data/signed/TooManyHobbies.yaml
Normal file
2
_data/signed/TooManyHobbies.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: John Rodriguez
|
||||
link: mailto:johrodri@optonline.net
|
2
_data/signed/XavierCLL.yaml
Normal file
2
_data/signed/XavierCLL.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Xavier C. Llano
|
||||
link: https://github.com/XavierCLL
|
2
_data/signed/ZeroAbility.yaml
Normal file
2
_data/signed/ZeroAbility.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Nik Reist
|
||||
link: https://github.com/ZeroAbility
|
|
@ -1,2 +1,2 @@
|
|||
name: your real name
|
||||
name: demansr
|
||||
link: https://github.com/demansr/
|
||||
|
|
2
_data/signed/h4xor666.yaml
Normal file
2
_data/signed/h4xor666.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Bob Kaufman
|
||||
link: https://github.com/h4xor666
|
2
_data/signed/ivansh-cinarra.yaml
Normal file
2
_data/signed/ivansh-cinarra.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: ivansh
|
||||
link: https://github.com/ivansh-cinarra
|
|
@ -1,2 +1,2 @@
|
|||
name: Jed Eckert
|
||||
link: https://none
|
||||
link: /#
|
||||
|
|
|
@ -14,7 +14,7 @@ for info, content in zip(parts[::2], parts[1::2]):
|
|||
|
||||
content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n")]
|
||||
for i in range(len(content_lines) - 1):
|
||||
if content_lines[i].startswith("name:") and content_lines[i + 1].startswith("link:"):
|
||||
if content_lines[i].lower().startswith("name:") and content_lines[i + 1].lower().startswith("link:"):
|
||||
if not os.path.isfile(f"_data/signed/{author}.yaml"):
|
||||
with open(f"_data/signed/{author}.yaml", "w") as f:
|
||||
f.write(content_lines[i] + "\n" + content_lines[i + 1] + "\n")
|
||||
f.write("name:" + content_lines[i][5:] + "\nlink:" + content_lines[i + 1][5:] + "\n")
|
||||
|
|
Loading…
Reference in a new issue