md

for github hosted pages, markdown away!

Contents

my url should be $0/md/contents where:

(semi)-auto generated list of contents:

$ 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/

TODO html tingy which creates something like:

$ 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