Image Link Insertion
Sublime Text package for quick insertion of many images into markdown document
Details
Installs
- Total 261
- Win 148
- Mac 83
- Linux 30
Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 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 | 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 | 1 | 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
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"
}
}