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
| <aid="doxygen-optimize_output_slice"></a>optimize_output_slice | Set the `optimize_output_slice` tag to `True` if your project consists of Slice sources only. |`None`|
311
312
| <aid="doxygen-extension_mapping"></a>extension_mapping | Doxygen selects the parser to use depending on the extension of the files it parses. |`None`|
312
313
| <aid="doxygen-markdown_support"></a>markdown_support | If the `markdown_support` tag is enabled then Doxygen pre-processes all comments according to the Markdown format, which allows for more readable documentation. |`None`|
314
+
| <aid="doxygen-markdown_strict"></a>markdown_strict | If the markdown_strict tag is enabled then Doxygen treats text in comments as Markdown formatted also in cases where Doxygen's native markup format conflicts with that of Markdown. |`None`|
313
315
| <aid="doxygen-toc_include_headings"></a>toc_include_headings | When the `toc_include_headings` tag is set to a non-zero value, all headings up to that level are automatically included in the table of contents, even if they do not have an id attribute. |`None`|
314
316
| <aid="doxygen-markdown_id_style"></a>markdown_id_style | The `markdown_id_style` tag can be used to specify the algorithm used to generate identifiers for the Markdown headings. |`None`|
315
317
| <aid="doxygen-autolink_support"></a>autolink_support | When enabled Doxygen tries to link words that correspond to documented classes, or namespaces to their corresponding documentation. |`None`|
Copy file name to clipboardExpand all lines: doxygen/doxygen.bzl
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -249,6 +249,7 @@ def doxygen(
249
249
optimize_output_slice=None,
250
250
extension_mapping=None,
251
251
markdown_support=None,
252
+
markdown_strict=None,
252
253
toc_include_headings=None,
253
254
markdown_id_style=None,
254
255
autolink_support=None,
@@ -746,6 +747,7 @@ def doxygen(
746
747
optimize_output_slice: Set the `optimize_output_slice` tag to `True` if your project consists of Slice sources only.
747
748
extension_mapping: Doxygen selects the parser to use depending on the extension of the files it parses.
748
749
markdown_support: If the `markdown_support` tag is enabled then Doxygen pre-processes all comments according to the Markdown format, which allows for more readable documentation.
750
+
markdown_strict: If the markdown_strict tag is enabled then Doxygen treats text in comments as Markdown formatted also in cases where Doxygen's native markup format conflicts with that of Markdown.
749
751
toc_include_headings: When the `toc_include_headings` tag is set to a non-zero value, all headings up to that level are automatically included in the table of contents, even if they do not have an id attribute.
750
752
markdown_id_style: The `markdown_id_style` tag can be used to specify the algorithm used to generate identifiers for the Markdown headings.
751
753
autolink_support: When enabled Doxygen tries to link words that correspond to documented classes, or namespaces to their corresponding documentation.
0 commit comments