Skip to content
Snippets Groups Projects
Commit afff8750 authored by Noah's avatar Noah
Browse files

Some testing of converting links to Md format with plugin.

parent 9a37feb1
No related branches found
No related tags found
No related merge requests found
......@@ -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:
![.gitignore](.gitignore)
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)
......
This file was created in Obs by linking to `TopicA/newfile.md` and it worked!
Testing of a backlink to [README](../README.md)
This file was created by linking to `[[obsidian file.md]]`
This file was created by linking to `[obsidian file](.md)`
- This is the same link to a file with obsidian-style linking: [README](README.md) converted to MdLinks by the plugin
- https://github.com/ozntel/obsidian-link-converter
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment