All Projects → math2001 → Markdownlivepreview

math2001 / Markdownlivepreview

Licence: mit
A Sublime Text 3 plugin to preview your markdown as you type

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Markdownlivepreview

Sublime zk
A SublimeText3 package featuring ID based wiki style links, and #tags, intended for zettelkasten method users. Loaded with tons of features like inline image display, sophisticated tag search, note transclusion features, support for note templates, bibliography support, support for multiple panes, etc. to make working in your Zettelkasten a joy 😄.
Stars: ✭ 408 (+66.53%)
Mutual labels:  markdown, sublime-text, sublime-text-3
Nord Sublime Text
An arctic, north-bluish clean and elegant Sublime Text theme.
Stars: ✭ 109 (-55.51%)
Mutual labels:  sublime-text, sublime-text-3
Projectmaker
A Sublime Text 2/3 plugin to allow creating any kind of project from your own custom templates
Stars: ✭ 233 (-4.9%)
Mutual labels:  sublime-text, sublime-text-3
Neon Color Scheme
A colorful bright-on-black color scheme for Sublime Text and TextMate. Its aim is to make as many languages as possible look as good as possible. Includes extended support for Python, Ruby, Clojure, JavaScript/JSON, C/C++, diff, HTML/XML, Markdown, PHP, CSS/SCSS/SASS, GitGutter, Find In Files, PackageDev, Regex, SublimeLinter, and much more.
Stars: ✭ 159 (-35.1%)
Mutual labels:  sublime-text, sublime-text-3
Pythonimproved
The best Python language definition for Sublime Text - ever. Includes full support for Unicode, as well as both Python 2 and Python 3 syntax. Check out the Neon Color Scheme for highlighting.
Stars: ✭ 95 (-61.22%)
Mutual labels:  sublime-text, sublime-text-3
Carbonsublime
🚀 A Sublime Text 3 Plugin for Carbon. (https://carbon.now.sh)
Stars: ✭ 104 (-57.55%)
Mutual labels:  sublime-text, sublime-text-3
Githubinator
Sublime Text plugin that shows selected text on remote GitHub or Bitbucket repo
Stars: ✭ 135 (-44.9%)
Mutual labels:  sublime-text, sublime-text-3
Sublime Markdown Extended
Top 100 Sublime Text plugin! Markdown syntax highlighter for Sublime Text, with extended support for GFM fenced code blocks, with language-specific syntax highlighting. YAML Front Matter. Works with ST2/ST3. Goes great with Assemble.
Stars: ✭ 645 (+163.27%)
Mutual labels:  markdown, sublime-text
Css3
The most complete CSS support for Sublime Text
Stars: ✭ 178 (-27.35%)
Mutual labels:  sublime-text, sublime-text-3
Zeal
Zeal for Sublime Text 2/3
Stars: ✭ 184 (-24.9%)
Mutual labels:  sublime-text, sublime-text-3
Gruvbox
🎨 Sublime Text themes & color schemes with pastel 'retro groove' colors
Stars: ✭ 191 (-22.04%)
Mutual labels:  sublime-text, sublime-text-3
Consolewrap
This plugin helps you to work easily with log statements
Stars: ✭ 75 (-69.39%)
Mutual labels:  sublime-text, sublime-text-3
Sublime Text Plugins For Frontend Web Development
📝 Collection of plugins for Frontend Web Development
Stars: ✭ 1,127 (+360%)
Mutual labels:  sublime-text, sublime-text-3
Productive Sublime Snippets Ruby
Ruby Snippets for Sublime Text
Stars: ✭ 109 (-55.51%)
Mutual labels:  sublime-text, sublime-text-3
Sublimeallautocomplete
Extend Sublime autocompletion to find matches in all open files of the current window
Stars: ✭ 906 (+269.8%)
Mutual labels:  sublime-text, sublime-text-3
Wsl Proxy
WSL proxy files for editor/linux interop
Stars: ✭ 134 (-45.31%)
Mutual labels:  sublime-text, sublime-text-3
Sublimenotebook
📝 Make Sublime Text your favorite note taking/journal application
Stars: ✭ 203 (-17.14%)
Mutual labels:  sublime-text, sublime-text-3
Javascriptenhancements
JavaScript Enhancements is a plugin for Sublime Text 3. It offers not only a smart javascript autocomplete but also a lot of features about creating, developing and managing javascript projects (real-time errors, code refactoring, etc.).
Stars: ✭ 592 (+141.63%)
Mutual labels:  sublime-text, sublime-text-3
Sublime Jekyll
A Sublime Text package for Jekyll static sites.
Stars: ✭ 160 (-34.69%)
Mutual labels:  sublime-text, sublime-text-3
Helium
Let Sublime Text 3 talk with Jupyter.
Stars: ✭ 192 (-21.63%)
Mutual labels:  sublime-text, sublime-text-3

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 FIXMEs all over this package. Just pick one and fix it :-)

$ git clone https://github.com/math2001/MarkdownLivePreview
$ cd MarkdownLivePreview
$ grep -R FIXME

Hack it!

  1. Fork this repo
  2. Make your own branch (the name of the branch should be the feature you are implementing eg. improve-tables, fix-crash-on-multiple-preview
  3. All your code should be formated by black.
  4. 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...

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].