MarkdownLivePreview
A Sublime Text 3 plugin to preview your markdown as you type
Details
Installs
- Total 194K
- Win 94K
- Mac 67K
- Linux 33K
Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 23 | 41 | 38 | 33 | 10 | 22 | 30 | 30 | 32 | 28 | 32 | 19 | 21 | 21 | 39 | 31 | 30 | 36 | 17 | 15 | 37 | 33 | 34 | 45 | 35 | 21 | 24 | 31 | 33 | 20 | 33 | 13 | 12 | 21 | 19 | 40 | 22 | 25 | 33 | 21 | 29 | 31 | 43 | 57 | 35 | 27 |
Mac | 8 | 28 | 22 | 22 | 11 | 7 | 24 | 28 | 28 | 19 | 34 | 9 | 12 | 22 | 30 | 35 | 29 | 31 | 10 | 2 | 25 | 28 | 30 | 26 | 33 | 7 | 14 | 22 | 25 | 20 | 16 | 11 | 8 | 8 | 18 | 27 | 25 | 20 | 32 | 22 | 13 | 37 | 23 | 30 | 41 | 35 |
Linux | 4 | 14 | 8 | 3 | 7 | 6 | 3 | 9 | 7 | 6 | 11 | 2 | 4 | 6 | 9 | 12 | 12 | 9 | 2 | 4 | 10 | 11 | 10 | 13 | 8 | 6 | 3 | 9 | 8 | 9 | 9 | 5 | 4 | 5 | 5 | 13 | 8 | 11 | 10 | 3 | 8 | 7 | 13 | 9 | 19 | 9 |
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…