Installation

Package Control

It is highly recommended to install MarkdownEditing with Package Control as it automatically installs required dependencies and keeps all packages up to date.

  1. Install Package Control if you haven't yet.
  2. Open Command Palette (Ctrl + Shift + P (Windows, Linux) or + + P on Mac)
  3. Type Install Package and hit Enter to display a list of available packages.
  4. Type MarkdownEditing and hit Enter to install the package.

Pre-Releases

If you are interested in testing bleeding edge features you can set up Package Control to install pre-releases by adding MarkdownEditing to install_prereleases key in the Package Control.sublime-settings.

"install_prereleases":
[
  "MarkdownEditing"
],

Manual installation

  1. In Sublime Text, open the menu Preferences > Browse Packages.... This is the Sublime Text Packages directory.
  2. Download and unzip or clone this repository to a directory MarkdownEditing in the Sublime Text Packages directory.
  3. The folder structure should look like [...]/Packages/MarkdownEditing/[files].

Cloning Repository

Mac OS
cd ~/Library/Application\ Support/Sublime\ Text/Packages/
git clone https://github.com/SublimeText-Markdown/MarkdownEditing.git
Linux
cd ~/.config/sublime-text/Packages
git clone https://github.com/SublimeText-Markdown/MarkdownEditing.git
Windows
cd "%APPDATA%\Sublime Text\Packages"
git clone https://github.com/SublimeText-Markdown/MarkdownEditing.git

Note

Destination paths may differ depending on Sublime Text version.