Merge pull request #112 from jlowdermilk/fix-genmarkdowntree
Don't prepend filename in default GenMarkdownTree
This commit is contained in:
		@ -104,8 +104,9 @@ func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string)
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func GenMarkdownTree(cmd *Command, dir string) {
 | 
					func GenMarkdownTree(cmd *Command, dir string) {
 | 
				
			||||||
	noOp := func(s string) string { return s }
 | 
						identity := func(s string) string { return s }
 | 
				
			||||||
	GenMarkdownTreeCustom(cmd, dir, noOp, noOp)
 | 
						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) {
 | 
					func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string) string) {
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user