ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Markdown​Writer

by vanleo2001 ST3 Win

"MarkdownWriter" is a Sublime Text 3 (windows) plugin for markdown writing, especially it can easily convert html to markdown (also downloading images to local harddisk) when you need copy some data from webpage.

Details

Installs

  • Total 2K
  • Win 2K
  • Mac 0
  • Linux 3
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 1 1 0 0 0 0 0 0 1 0 0 0 2 0 0 1 2 0 0 1 2 1 0 0 2 1 0 1 2 3 1 0 1 0 1 1 1 1 1 1 1 0 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Readme in Chinese is here 中文说明在此

Introduce

MarkdownWriter is a Sublime Text 3 (windows) plugin that make markdown text writing more easy.

you can use it to do:

  1. smart paste
    (1) When you take note from web, you can copy some content in web browser (such as Firefox), then use shortcut Ctrl+Alt+V (or click Paste html or image in contextmenu) to paste content in Markdown format into Sublime Text. If it has images in the content, it will auto download the image to local sub directory “media folder”.
    (2) When you copy some images in local harddisk, you can use shortcut Ctrl+Alt+V to insert the image links in Markdown format in Sublime Text, also the images will be stored into local sub directory “media folder”.
    (3) When you open one image, you can copy the image picture, then use shortcut Ctrl+Alt+V to insert the image link in Markdown format in Sublime Text, also the images will be stored into local sub directory “media folder”.

  2. show inline image directly You can manually install MarkdownInlineImages plugin, then use shortcut Alt+I to show images directly in Sublime Text.

  3. bold You can select some content, use shortcut Ctrl+Alt+B to Bold it.

  4. italic You can select some content, use shortcut Ctrl+Alt+I to Italic it.

  5. headline2 Put the cursor in one line, use shortcut Ctrl+Alt+2 to add Headline2.

  6. headline3 Put the cursor in one line, use shortcut Ctrl+Alt+3 to add Headline3.

  7. headline4 Put the cursor in one line, use shortcut Ctrl+Alt+4 to add Headline4.

  8. smart list When editing lists, you can just press Shift+Alt+Enter and this plugin will automatically continue the list. Once the content of the list becomes empty it will stop.

install

  1. manually install: download and unpack to “Sublime Text 3\Data\Packages\", open file "Sublime Text 3\Data\Packages\User\Package Control.sublime-settings” with sublime text,add
"installed_packages":
    [
        "MarkdownWriter"
    ]

Tips:

  1. I use Sublime Text 3 x86 version, so I use library Pillow x86 version in this plugin. If you use Sublime Text 3 x64 version, you can unpack “PIL_x64.zip” and cover the “PIL” folder.
  2. You must install Sublime Text 3 version >= build 3118 to show image directly.