Image Link Insertion
Sublime Text package for quick insertion of many images into markdown document
Details
Installs
- Total 286
- Win 163
- Mac 90
- Linux 33
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 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 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 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Image Link Insertion for Sublime Text
Simple helper for inserting images into (not only) markdown documents for Sublime Text.
This is a port of my Atom package to Sublime Text 4. It requires at least Sublime Text 4075.
Usage
- Click
Tools
→Insert images as markup
. - Select images using the dialogue that will open.
Inserted code can be customized in settings.
Installation
You can install this package using Package Control using the name “Image Link Insertion”.
For development, you will want to clone the repository into “Image Link Insertion” directory in the Sublime Text’s Packages
directory (Preferences
→ Browse Packages…
):
git clone git@github.com:jtojnar/sublime-image-link-insertion.git 'Image Link Insertion'
(Or create a symlink with such name from your projects directory.)
Customization
You can adjust any of the supported configuration keys in the editor-wide settings (accessible via Preferences
→ Package Settings
→ Image Link Insertion
→ Settings
).
You can also override the options for individual projects or views, based on active syntax – in those cases, follow the same syntax as the package settings but nest it under image-link-insertion
key (for projects, also under the settings
key):
// These settings override both User and Default settings for the LaTeX syntax
{
"image-link-insertion": {
"image_code": "\\begin{{figure}}\n\\includegraphics{{{url}}}\n\\end{{figure}}\n"
}
}