Handle wiki style links

This commit is contained in:
2024-09-30 19:01:27 +02:00
parent 43d647c9ea
commit b64c13442b
8 changed files with 211 additions and 10 deletions

View File

@@ -5,6 +5,7 @@ import {
fetchFileContent,
saveFileContent,
pullChanges,
lookupFileByName,
} from '../services/api';
const DEFAULT_FILE = {
@@ -134,6 +135,7 @@ const useFileManagement = (gitEnabled = false) => {
handleContentChange,
handleSave,
pullLatestChanges,
lookupFileByName,
};
};