A simple plugin to preview your markdown as you type right in Sublime Text. No dependencies!
It's available on package control!
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"
}
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
- 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!
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...