for github hosted pages, markdown away!
my url should be $0/md/contents where:
$ find content -type f | xargs -I {} echo "* [{}]({})" | sed 's/.md//g' | sed 's/content\///'
find all files in content
| then print it in markdown link fmt
| then remove all .md (global regex) |
| then remove first notion of content/
$ tree content
content
├── arch00_install.md
├── arch_tips.md
├── arch_what_install.md
├── arch_zsh.md
├── i3.md
├── python_edu.md
├── test.md
0 directories, 7 files