Skip to content

Commit 710832b

Browse files
authored
fix: config path resolve (#52)
1 parent ceb5b61 commit 710832b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/mkdocstrings_handlers/matlab/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def __init__(
193193
config_path = None
194194
full_paths = []
195195
else:
196-
config_path = Path(config_file_path).parent
196+
config_path = Path(config_file_path).resolve().parent
197197
full_paths = [(config_path / path).resolve() for path in paths]
198198

199199
if pathIds := [str(path) for path in full_paths if not path.is_dir()]:

src/mkdocstrings_handlers/matlab/templates/material/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ code.doc-symbol-property::after {
2727

2828
code.doc-symbol-script {
2929
color: #d0bf3d;
30-
background-color: #fff8a87b;
30+
background-color: #96862f27;
3131
}
3232

3333
code.doc-symbol-script::after {
34-
content: "prog";
34+
content: "script";
3535
}

0 commit comments

Comments
 (0)