From c3f024796ece596122fde67ae92574aa40bd8823 Mon Sep 17 00:00:00 2001 From: Noah <noah.wickel@rwth-aachen.de> Date: Mon, 6 Nov 2023 10:15:33 +0100 Subject: [PATCH] Testing `%20` repairing for links. --- README.md | 2 ++ Topic A/newfile.md | 1 + 2 files changed, 3 insertions(+) create mode 100644 Topic A/newfile.md diff --git a/README.md b/README.md index b4e28a1..0e7e2ff 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,9 @@ The [.gitignore](.gitignore) file needs to contain the subfolder .obsidian in or - This is a test link to a file with obsidian-style linking: [[obsidian file]] - git style link to the same file: [obsidian file](obsidian%20file.md) - This is a test link to a file in a subfolder called Topic A: [link](Topic A/newfile.md) + - GitLab actually recognises this link correctly, however Obsidian terminates after the first space character - here is the test again without the space in the subfolder: [link](TopicA/newfile.md) + - here is the test again with a repaired space in the subfolder: [link](Topic%20A/newfile.md) This content is created to test/showcase the behaviour and rendering in GitLab online. diff --git a/Topic A/newfile.md b/Topic A/newfile.md new file mode 100644 index 0000000..20320f3 --- /dev/null +++ b/Topic A/newfile.md @@ -0,0 +1 @@ +This file was finally created by Obsidian in the subfolder after the MdLink was repaired with a `%20` as space. \ No newline at end of file -- GitLab