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