mariotoffia / goasciidoc

Document your go code using asciidoc instead of godoc
Apache License 2.0
18 stars 0 forks source link

TabWriter is not used #2

Closed mariotoffia closed 4 years ago

mariotoffia commented 4 years ago

Since struct, interfaces etc. do not emit \t instead only spaces are used.

for example:

type Producer struct {
        parseconfig goparser.ParseConfig
        paths []string
        outfile string
        index bool
        indexconfig string
        overrides map[string]string
        writer io.Writer
}

This needs to be adressed on type struct, interface, const etc but not on other places.

mariotoffia commented 4 years ago

Fixed