protoc-gen-doc
protoc-gen-doc copied to clipboard
I can't get the struct detail which is imported from other proto file
for example:
import "xxx/core/list_settings.proto"
message BookList {
core.ListPagination setting = 1;
}
I can just get that:
| Field | Type | Description |
| ----- | ---- | ----------- |
| setting | [core.ListPagination](#core.ListPagination) | |
| Field | Type | Description |
|---|---|---|
| setting | core.ListPagination |
but it has't the detail of the #core.ListPagination
@estan
Have the same issue. I can resolve by including the referenced proto files directly when creating documentation but somewhat cumbersome and leads to a bunch of noise in the documentation if the other proto files have a bunch of messages not used by the ones I'm creating documentation for.