sed -i  s/^/\ \ \ \ / <file>

fix the urls so the files can be served from local filesystem on phone

for i in `find . | grep '.html'` ; do  sed -i s/\\/\"\>/\\/index.html\"\>/g $i ; done

remove the footer

for i in `find . | grep '.html'` ; do sed -i '/Documentation\ built\ with/d' $i ; done

create the map pages

tree | sed  s/^/\ \ \ \ / > map.md

for i in find . | grep '.html' ; do sed -i '/icon-home/d' $i ; done