-
Notifications
You must be signed in to change notification settings - Fork 490
Closed
Description
In the markdown.template is a small bug that leads to wrong formatted lists.
This is also shown in the markdown example
The current output:
Table of Contents
Should be:
Table of Contents
The template should be adapted by simply adding an additional space.
Before change:
Table of Contents
{{#files}}
- {{file_name}}
{{#file_messages}} - {{message_long_name}}
{{/file_messages}}
{{#file_enums}} - {{enum_long_name}}
{{/file_enums}}
{{#file_has_extensions}} - File-level Extensions
{{/file_has_extensions}}
{{#file_services}} - {{service_name}}
{{/file_services}}
{{/files}}
After change:
Table of Contents
{{#files}}
- {{file_name}}
{{#file_messages}}- {{message_long_name}}
{{/file_messages}}
{{#file_enums}}
- {{message_long_name}}
- {{enum_long_name}}
{{/file_enums}}
{{#file_has_extensions}} - File-level Extensions
{{/file_has_extensions}}
{{#file_services}} - {{service_name}}
{{/file_services}}
{{/files}}
I tried to create a custom template based on the templates/markdown.mustache
with the above shown changes but then the output is missing the whole {{#message_fields}}
section.
Thank you.
Metadata
Metadata
Assignees
Labels
No labels