MarkdownLivePreview
A Sublime Text 3 plugin to preview your markdown as you type
Details
Installs
- Total 223K
- Win 109K
- Mac 77K
- Linux 37K
May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 4 | 11 | 17 | 50 | 27 | 35 | 18 | 7 | 6 | 21 | 38 | 24 | 23 | 32 | 15 | 14 | 23 | 22 | 15 | 33 | 24 | 16 | 5 | 8 | 11 | 25 | 27 | 27 | 16 | 18 | 22 | 24 | 33 | 22 | 29 | 20 | 11 | 22 | 34 | 32 | 24 | 24 | 6 | 14 | 33 | 40 |
Mac | 2 | 8 | 22 | 35 | 25 | 24 | 23 | 16 | 10 | 16 | 20 | 25 | 24 | 21 | 16 | 10 | 17 | 16 | 22 | 12 | 21 | 7 | 14 | 13 | 8 | 17 | 18 | 26 | 12 | 10 | 21 | 24 | 16 | 24 | 24 | 10 | 10 | 11 | 18 | 21 | 21 | 16 | 10 | 10 | 18 | 23 |
Linux | 0 | 0 | 6 | 7 | 6 | 10 | 12 | 2 | 1 | 5 | 6 | 7 | 8 | 8 | 4 | 5 | 5 | 6 | 13 | 9 | 8 | 14 | 6 | 3 | 5 | 8 | 12 | 6 | 5 | 3 | 10 | 37 | 10 | 5 | 11 | 3 | 3 | 6 | 7 | 4 | 10 | 11 | 5 | 2 | 6 | 6 |
Readme
- Source
- raw.githubusercontent.com
MarkdownLivePreview
A simple plugin to preview your markdown as you type right in Sublime Text. No dependencies!
How to install
It's available on package control!
Setting a keybinding
The open the preview, you can search up in the command palette
(ctrl+shift+p) MarkdownLivePreview: Open Preview
. But if you
prefer to have a shortcut, add this to your keybindings file:
{
"keys": ["alt+m"],
"command": "open_markdown_preview"
}
How to contribute
If you know what feature you want to implement, or what bug you wanna fix, then go ahead and hack! Maybe raise an issue before hand so that we can talk about it if it's a big feature.
But if you wanna contribute just to say thanks, and don't really know what you
could be working on, then there are a bunch of FIXME
s all over this package.
Just pick one and fix it :-)
$ git clone https://github.com/math2001/MarkdownLivePreview
$ cd MarkdownLivePreview
$ grep -R FIXME
Hack it!
- Fork this repo
- Make your own branch (the name of the branch should be the feature you are
implementing eg.
improve-tables
,fix-crash-on-multiple-preview
- All your code should be formated by black.
- Send a PR!
Known limitations
Numbered lists are rendered as unordered lists
1. first
2. second
3. third
will be previewed the exact same way as
- first
- second
- third
The issue comes from Sublime Text's minihtml which doesn't support ordered lists. If you think feel like implementing a workaround, feel free to contribute, but it's not something I'm planning on doing. It isn't a critical feature, and support should come with time…