pseudomuto / protoc-gen-doc

Documentation generator plugin for Google Protocol Buffers
MIT License
2.63k stars 464 forks source link

How to write option to a generated file? #515

Open Raiden1974 opened 1 year ago

Raiden1974 commented 1 year ago

How to write option to a generated file? Example a part of proto file:

` syntax = "proto3";

import "google/api/annotations.proto";

package keyapis.v1;

option java_package = "keyapis.v1"; option java_multiple_files = false; option java_string_check_utf8 = true; `