We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://loopback.io/doc/en/lb4/apidocs.rest.openapispecoptions.html, the table for the properties is not shown properly, see screen shot below:
Discovered this during a meeting with @raymondfeng and @bajtos, the issue might be because there's a code snippet inside a table in tsdocs.
Fix tip: Use the @remarks TSdoc notation
@remarks
The text was updated successfully, but these errors were encountered:
@example
* @example * ``` * { * '/openapi.json': {version: '3.0.0', format: 'json'}, * '/openapi.yaml': {version: '3.0.0', format: 'yaml'}, * } * ``` * @remarks * ``` * { * '/openapi.json': {version: '3.0.0', format: 'json'}, * '/openapi.yaml': {version: '3.0.0', format: 'yaml'}, * } * ```
And adding empty line between the @remarks and code won't work either.
other annotations in https://api-extractor.com/pages/tsdoc/doc_comment_syntax/ fail too
suggestion in https://stackoverflow.com/questions/28508141/code-block-inside-table-row-in-markdown not working in this case.
an issue probably related: RFC: Escaping doc comments inside doc comments microsoft/tsdoc#166, explains why this is not support in api-extractor.
Sorry, something went wrong.
Close as PR merged.
jannyHou
No branches or pull requests
In https://loopback.io/doc/en/lb4/apidocs.rest.openapispecoptions.html, the table for the properties is not shown properly, see screen shot below:
Discovered this during a meeting with @raymondfeng and @bajtos, the issue might be because there's a code snippet inside a table in tsdocs.
Fix tip: Use the
@remarks
TSdoc notationThe text was updated successfully, but these errors were encountered: