@@ -3,16 +3,18 @@ This is a template for a collection of text files (e.g. notebooks, wikis, "Zette
- editing mainly in [Obsidian](https://wwww.obsidian.md), but any text editor possible
- asynchronous shared work possible, with note merging handled by git
- online viewing in GitLab possible, with working links between notes
- this particularly means that Obsidians `\[\[ FILE \]\]` links are not supported
- this particularly means that Obsidians `[[ FILENAME ]]` wiki-type links are not supported
- the plugin [Obsidian Link converter](https://github.com/ozntel/obsidian-link-converter) can be used to convert wikilinks to MdLinks
- as a rule of thumb, avoid spaces in filenames if possible. If the file already has a space in it, the link must replace the space with `%20` like so: `[obsidian file](obsidian%20file.md)`
### .gitignore
The [.gitignore](.gitignore) file currently looks like this:

The [.gitignore](.gitignore) file needs to contain the subfolder .obsidian in order not to push the personal settings for this vault. Obsidian cannot link to this file because it always assumes `.md` file endings, however in GitLab the link above should work.
## Test content
- This is a test link to another [file](otherfile.md)
- This is a test link to [itself](./README.md)
- This is test link to a file with obsidian-style linking: [[obsidian file]]
- 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)
- here is the test again without the space in the subfolder: [link](TopicA/newfile.md)