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
Copy file name to clipboardExpand all lines: docs/mrdocs.schema.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,16 @@
17
17
"title": "Use the first line of the comment as the brief",
18
18
"type": "boolean"
19
19
},
20
+
"auto-function-metadata": {
21
+
"default": true,
22
+
"description": "When set to `true`, MrDocs automatically provides documentation for special functions, such as constructors, destructors, and operators. It also provides documentation for missing documentation metadata, such as known types.",
23
+
"enum": [
24
+
true,
25
+
false
26
+
],
27
+
"title": "Automatically provide missing documentation for special functions and trivial metadata",
28
+
"type": "boolean"
29
+
},
20
30
"auto-relates": {
21
31
"default": true,
22
32
"description": "When set to `true`, MrDocs automatically finds non-member functions that are related to the current class.",
Copy file name to clipboardExpand all lines: src/lib/Lib/ConfigOptions.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,13 @@
177
177
"details": "When set to `true`, MrDocs automatically finds non-member functions that are related to the current class.",
178
178
"type": "bool",
179
179
"default": true
180
+
},
181
+
{
182
+
"name": "auto-function-metadata",
183
+
"brief": "Automatically provide missing documentation for special functions and trivial metadata",
184
+
"details": "When set to `true`, MrDocs automatically provides documentation for special functions, such as constructors, destructors, and operators. It also provides documentation for missing documentation metadata, such as known types.",
0 commit comments