Merge pull request #112 from jlowdermilk/fix-genmarkdowntree

Don't prepend filename in default GenMarkdownTree
This commit is contained in:
Eric Paris 2015-05-20 22:43:41 -05:00
commit 8f5946caae

View file

@ -104,8 +104,9 @@ func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string)
}
func GenMarkdownTree(cmd *Command, dir string) {
noOp := func(s string) string { return s }
GenMarkdownTreeCustom(cmd, dir, noOp, noOp)
identity := func(s string) string { return s }
emptyStr := func(s string) string { return "" }
GenMarkdownTreeCustom(cmd, dir, emptyStr, identity)
}
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string) string) {