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