Browse Source

Merge pull request #4018 from awesome-selfhosted/authors-plaintext

tools/authors: use plaintext instead of markdown for the authors file
pull/4019/head
nodiscc 10 months ago
committed by GitHub
parent
commit
f1db6c1662
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1368
      AUTHORS
  2. 1349
      AUTHORS.md
  3. 4
      Makefile
  4. 2
      README.md

1368
AUTHORS
File diff suppressed because it is too large
View File

1349
AUTHORS.md
File diff suppressed because it is too large
View File

4
Makefile

@ -1,5 +1,5 @@
#!/usr/bin/make -f
SHELL = /bin/bash
# update the AUTHORS.md file
# update the AUTHORS file
contrib:
@mv .github/.mailmap . && printf "|Commits | Author |\n| :---: | --- |\n" > AUTHORS.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap
@mv .github/.mailmap . && printf "Commits|Author\n-------|---------------------------------------------------\n" > AUTHORS && git shortlog -sne >> AUTHORS && mv .mailmap .github/.mailmap

2
README.md

@ -2189,7 +2189,7 @@ Contributing guidelines can be found in [.github/CONTRIBUTING.md](.github/CONTRI
## Authors
The list of authors can be found in [AUTHORS.md](AUTHORS.md).
The list of authors can be found in the [AUTHORS](AUTHORS) file.
## License

Loading…
Cancel
Save