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

Markdown Images

by xsleonard ALL

Sublime Text 3 plugin to render images in markdown files

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Markdown Images

This is a Sublime Text 3 plugin to render images inside of markdown files.

Example

Usage

Images in markdown use the ![alt text](uri) markup. Wherever this appears, this plugin can render the image specified by the URI below the line.

You can configure an image's dimensions by adding HTML <img> properties after the image markup: ![alt text](uri){width="200", height="200"}. Everything between the {} will be copied to the <img> element that renders the image. Alternatively you can specify zoom tag: {zoom="1.5"} and the multiplicative zoom factor will be applied on top of the base_zoom config variable.

If the URI points to a file on disk, it is called a “local” image, and renders by default. If the URI points to an external (http, https, etc) resource, it is called a “remote” image, and does not render by default.

You can choose to show local, show remote or show all images from the command palette and with the configuration settings.

Installation

You can install this package using Package Control using the name “Markdown Images”.

For development, you will want to clone the repository into “Markdown Images” directory in the Sublime Text’s Packages directory (PreferencesBrowse Packages…):

git clone git@github.com:xsleonard/sublime-MarkdownImages.git 'Markdown Images'

(Or create a symlink with such name from your projects directory.)

Configuration

By default, images are rendered when the file is first loaded. This can be configured with the show_local_images_on_load and show_remote_images_on_load settings.

Images can rendered on save with the show_local_images_on_post_save and show_remote_images_on_post_save settings.

Go to Sublime Text -> Packages -> Package Settings -> MarkdownImages (macOS menu) to edit your configuration.

Refer to the default configuration file.

Commands

  • markdown_images_show(show_local: bool, show_remote: bool) - Show images from the local filesystem and/or remote URLs
  • markdown_images_hide() - Removes all rendered images from the view

These can be activated with the command palette (cmd+shift+p):

  • MarkdownImages: Hide Images
  • MarkdownImages: Show All Images
  • MarkdownImages: Show Local Images
  • MarkdownImages: Show Remote Images

Keybindings

This plugin adds no keybindings. You can set your own keybindings to the commands.

Notes

Only PNG, JPG and GIF images are supported.

SVG does not render inside of ST3 Phantom objects, unfortunately.

Remote image loading runs in the main thread so it will stall ST3. Remote image loading is disabled

Credits

The image rendering code was seeded by sublime_zk