You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found this happens when there's a space between the "#" symbol and the header, for example:
"info": {
"title": "",
"description": "# Test",
"version": ""
},
It can be temporarily fixed by removing the space:
"info": {
"title": "",
"description": "#Test",
"version": ""
},
Markdown standard has a space between so this must be some sort of issue with how the markdown is being generated from the json.
Describe the bug
Duplicated title when there's no content under title
Expected behavior
No duplicated title.
Minimal reproducible OpenAPI snippet(if possible)
Screenshots
Additional context
None.
The text was updated successfully, but these errors were encountered: