MarkdownLivePreview
A Sublime Text 3 plugin to preview your markdown as you type
Details
Installs
- Total 215K
- Win 105K
- Mac 74K
- Linux 36K
Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 28 | 28 | 21 | 14 | 11 | 20 | 31 | 41 | 27 | 19 | 13 | 14 | 22 | 27 | 28 | 24 | 24 | 11 | 17 | 30 | 25 | 22 | 24 | 21 | 13 | 12 | 8 | 15 | 20 | 12 | 24 | 24 | 21 | 23 | 28 | 32 | 26 | 24 | 15 | 5 | 22 | 29 | 34 | 29 | 20 |
Mac | 0 | 20 | 15 | 22 | 12 | 11 | 14 | 15 | 12 | 19 | 24 | 6 | 4 | 14 | 19 | 14 | 10 | 18 | 8 | 3 | 16 | 19 | 14 | 12 | 12 | 6 | 10 | 16 | 8 | 9 | 19 | 20 | 11 | 6 | 19 | 17 | 20 | 18 | 15 | 6 | 5 | 10 | 21 | 24 | 13 | 13 |
Linux | 0 | 8 | 8 | 4 | 6 | 8 | 7 | 10 | 5 | 7 | 11 | 7 | 5 | 8 | 9 | 13 | 8 | 16 | 7 | 9 | 5 | 15 | 5 | 9 | 9 | 7 | 4 | 8 | 8 | 8 | 7 | 8 | 6 | 2 | 8 | 6 | 7 | 9 | 10 | 9 | 5 | 9 | 9 | 10 | 7 | 7 |
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…