Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/mrdocs.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
},
"sfinae": {
"default": true,
"description": "When set to true, MrDocs detects SFINAE expressions in the source code and extracts them as part of the documentation. Expressions such as `std::enable_if<...>` are detected, removed, and documented as a requirement.",
"description": "When set to true, MrDocs detects SFINAE expressions in the source code and extracts them as part of the documentation. Expressions such as `std::enable_if<...>` are detected, removed, and documented as a requirement. MrDocs uses an algorithm that extracts SFINAE infomation from types by identifying inspecting the primary template and specializations to detect the result type and the controlling expressions in a specialization.",
"title": "Detect and reduce SFINAE expressions",
"type": "boolean"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{#if attributes}}[{{join ", " attributes}}]
{{#if attributes}}[[{{join ", " attributes}}]]
{{/if}}
{{#if isMutable}}mutable
{{/if~}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{{/if~}}
{{#if isFriend}}friend
{{/if~}}
{{#if attributes}}{{#unless isFriend}}[{{join ", " attributes}}]
{{#if attributes}}{{#unless isFriend}}[[{{join ", " attributes}}]]
{{/unless}}{{/if~}}
{{#if constexprKind}}{{constexprKind}}
{{/if~}}
Expand Down
Loading