A way to link to other Markdown (and non-Markdown) files from your Markdown notes.
demo.mp4
- Navigate to your
Packagesfolder (easiest way to find it is from within Sublime Text, go toPreferences > Browse Packages...). - Download the latest release from the releases page.
- Unzip the downloaded archive. Copy the directory
markdown_file_links-x.x.xinto yourPackagesfolder.
Use git clone to clone this repository into your Packages folder.
# From within your `Packages` folder
git clone https://github.com/kevinfiol/markdown_file_links.gitIn your Markdown files, link to other files using the [[file_path]] notation:
Go to [[todos]].By default, the plugin will assume an extension of .md.
Relative paths from the current file can be used to link to nested files, or files in parent directories. This works as you'd expect.
Go to [[nested/markdown/file.md]]
Go to [[../../todos]]
Go to [[./cat_picture.jpg]]Big thanks to OdatNurd for always fielding Sublime Text plugin development questions.