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
Location objects only contained the full path and the path relative to the search directories. This commit includes a new field for the source path, which contains the path relative to the `source-root`.
#feat
fix#798
Copy file name to clipboardExpand all lines: docs/mrdocs.schema.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -225,7 +225,7 @@
225
225
},
226
226
"source-root": {
227
227
"default": "<config-dir>",
228
-
"description": "Path to the root directory of the source code. This path is used as a default for input files and a base for relative paths formed from absolute paths.",
228
+
"description": "Path to the root directory of the source code. This path is used as a default for input files and a base for relative paths formed from absolute paths. This should typically be the root directory of the git project, as relative paths formed from it can be used to create links to these source files in the repository. Templates use the `base-url` option to create links to the source code.",
229
229
"title": "Path to the root directory of the source code",
Copy file name to clipboardExpand all lines: src/lib/Lib/ConfigOptions.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
{
43
43
"name": "source-root",
44
44
"brief": "Path to the root directory of the source code",
45
-
"details": "Path to the root directory of the source code. This path is used as a default for input files and a base for relative paths formed from absolute paths.",
45
+
"details": "Path to the root directory of the source code. This path is used as a default for input files and a base for relative paths formed from absolute paths. This should typically be the root directory of the git project, as relative paths formed from it can be used to create links to these source files in the repository. Templates use the `base-url` option to create links to the source code.",
0 commit comments