mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Merge pull request #112 from jlowdermilk/fix-genmarkdowntree
Don't prepend filename in default GenMarkdownTree
This commit is contained in:
commit
8f5946caae
1 changed files with 3 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue