MarkdownLivePreview
A Sublime Text 3 plugin to preview your markdown as you type
Details
Installs
- Total 217K
- Win 106K
- Mac 75K
- Linux 36K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 13 | 21 | 18 | 18 | 22 | 6 | 20 | 20 | 29 | 23 | 24 | 24 | 9 | 10 | 27 | 35 | 42 | 21 | 23 | 15 | 15 | 19 | 9 | 0 | 0 | 0 | 1 | 17 | 23 | 22 | 6 | 7 | 23 | 16 | 17 | 22 | 0 | 0 | 27 | 38 | 19 | 13 | 21 | 35 | 13 |
Mac | 7 | 23 | 12 | 17 | 22 | 14 | 5 | 9 | 13 | 11 | 24 | 13 | 13 | 6 | 7 | 9 | 16 | 24 | 12 | 19 | 8 | 3 | 8 | 7 | 0 | 0 | 0 | 3 | 10 | 19 | 18 | 10 | 8 | 12 | 14 | 10 | 15 | 0 | 0 | 20 | 14 | 10 | 9 | 24 | 20 | 14 |
Linux | 8 | 2 | 8 | 8 | 6 | 3 | 4 | 3 | 8 | 3 | 6 | 10 | 3 | 3 | 1 | 11 | 6 | 7 | 12 | 6 | 4 | 3 | 5 | 10 | 0 | 0 | 0 | 1 | 6 | 6 | 9 | 6 | 3 | 6 | 6 | 1 | 8 | 0 | 0 | 13 | 6 | 4 | 4 | 7 | 11 | 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…