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