Fields defined with the extend keyword in a zserio schema are missing their doc strings in the generated HTML documentation.
Steps to Reproduce:
Create a zserio schema with extend fields, including doc strings.
Generate the HTML documentation.
Observe that the doc strings for extend fields are absent.
Example Schema:
struct SomeStruct
{
/** Some data. */
ExampleType exampleType;
/** Some additional data.*/
extend optional ExampleExtension exampleExtension;
}
Zserio Version: 2.15.0
Generated HTML: The doc string for exampleExtension is missing.
Expected Behavior: Doc strings for extend fields should appear in the generated HTML documentation.
Fields defined with the extend keyword in a zserio schema are missing their doc strings in the generated HTML documentation.
Steps to Reproduce:
Example Schema:
Zserio Version: 2.15.0 Generated HTML: The doc string for exampleExtension is missing. Expected Behavior: Doc strings for extend fields should appear in the generated HTML documentation.