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