├── .github └── workflows │ └── test.yml ├── .gitignore ├── Makefile ├── README.md ├── make-readme-markdown.el └── manage.sh /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/README.md -------------------------------------------------------------------------------- /make-readme-markdown.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/make-readme-markdown.el -------------------------------------------------------------------------------- /manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgalgs/make-readme-markdown/HEAD/manage.sh --------------------------------------------------------------------------------