-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Description
The good folks over at stackoverflow don't like my quite reasonable question asking where is the specification for godoc itself
The language specification doesn't mention that go:generate is special or that godoc comments exist.
The full rules should be documented somewhere other than in the gogenerate and godoc tools source.
Repeating that here:
I know godoc is minimal compared with similar tools but I would expect to find a specification for it somewhere. The closest thing to a specification I can find is the blog post announcing it. Is there anything more elsewhere? Even if there isn't a formal specificaiton perhaps a 1 page cheat sheet?
go help doc - documents the "go doc" sub-command but doesn't mention the format
This is also a hard thing to google as you get hits for anything documented using godoc.
I have found a couple of "tricks and tips" pages:
http://elliot.land/post/godoc-tips-tricks https://godoc.org/github.com/fluhus/godoc-tricks
I know the source is available but I should not have to read the source (which also has no link to a spec) to know how to use the tool.
I am surprised that I should have to ask this question and also that no-one has asked already so perhaps I have missed something obvious?
Some things not mentioned in that blog post which may help show why a spec would help that I have stumbled upon are:
[titles](https://godoc.org/github.com/fluhus/godoc-tricks#titles) (as in link above) [quotes](https://www.reddit.com/r/golang/comments/35ee2t/quotes_in_godoc/)
Extensions using go commands must not clash with the godoc syntax For example:
[gocontracts](https://github.com/Parquery/gocontracts extends the godoc syntax to support contracts in comments [apidocjs](http://apidocjs.com/) allows you to embeds API documentation in go comments go itself uses some comments semantically - e.g. "go: generate"
The language specification itself does not discuss the behaviour of comments beyond the syntax.