Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/math2001/fast-markdown
Sublime text plugin to type markdown quicker
https://github.com/math2001/fast-markdown
markdown speed sublime-text text-editor-plugin
Last synced: 21 days ago
JSON representation
Sublime text plugin to type markdown quicker
- Host: GitHub
- URL: https://github.com/math2001/fast-markdown
- Owner: math2001
- Created: 2016-11-01T05:03:15.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T06:58:38.000Z (almost 8 years ago)
- Last Synced: 2024-11-10T07:41:23.486Z (3 months ago)
- Topics: markdown, speed, sublime-text, text-editor-plugin
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fast Markdown - Sublime Text Plugin
**Markdown**. You type some *markdown* all the time. For github, stackoverflow, your readmes, your docs, your blog posts. The list never stops. This is why I created this plugin. It's basically going to make you become faster at typing markdown
It auto insert prefixes in lists (`-`, `*`, `n.`). (reorganize automatically the numbers when you add/remove element). It support nested lists.
It also helps with italics and bold (only working with `*` for now).
## A quick example
![a quick example of fast markdown.](fast-markdown.gif)
Sorry for the quality... :confused:
## Usage
The only thing you need to know is that when you want to insert an unordered nested list, just add at the end the line `- `. The `-` can be `+` or `*`. And if you want to insert an ordered list, add a `# `.
Otherwise, everything is just natural. :smirk:
## Install
For now, **Fast Markdown** is not available on Package Control, so you're going to install it manually.
## Using package control
No, I'm not crazy! You can install a package *with package control* from a github repo. [more info](https://packagecontrol.io/docs/usage). Here's what you have to do:
1. open up the command palette (`ctrl+shift+p`), and find `Package Control: Add Repository`. Then enter the URL of this repo: `https://github.com/math2001/fast-markdown` in the input field.
2. open up the command palette again and find `Package Control: Install Package`, and just search for `fast-markdown`.The first step was just adding `fast-markdown` to the list of available plugin, and has it normally does, package control download the repo and convert it into a `.sublime-package` (just a `.zip` with the wrong extension)
## Using the command line
```
cd "%APPDATA%\Sublime Text 3\Packages" # on window
cd ~/Library/Application\ Support/Sublime\ Text\ 3 # on mac
cd ~/.config/sublime-text-3 # on linuxgit clone "https://github.com/math2001/fast-markdown"
Done!
```