Refactor Notebook Link Handling (#16473)

* add keep absolute paths instead convert setting

* update tests/config

* refactor links in NotebookLinkHandler
This commit is contained in:
Vasu Bhog
2021-07-30 19:20:38 -07:00
committed by GitHub
parent a7c1bcaf93
commit 179678b495
9 changed files with 427 additions and 200 deletions

View File

@@ -335,6 +335,11 @@ configurationRegistry.registerConfiguration({
'default': 200,
'minimum': 10,
'description': localize('notebook.maxRichTextUndoHistory', "The maximum number of changes stored in the undo history for the notebook Rich Text editor.")
},
'notebook.useAbsoluteFilePaths': {
'type': 'boolean',
'default': false,
'description': localize('notebook.useAbsoluteFilePaths', "Use absolute file paths when linking to other notebooks.")
}
}
});