mirror of
https://github.com/kennethreitz-archive/kHTML.tmbundle.git
synced 2026-06-05 23:40:19 +00:00
34 lines
930 B
XML
Executable File
34 lines
930 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>command</key>
|
|
<string>img="$TM_DROPPED_FILE"
|
|
echo -n "<img src=\"$img\" "
|
|
|
|
sips -g pixelWidth -g pixelHeight "$img" \
|
|
|awk '/pixelWidth/ { printf("width=\"%d\" ", $2) }
|
|
/pixelHeight/ { printf("height=\"%d\" ", $2) }'
|
|
|
|
base=${img##*/}
|
|
alt=$(tr <<<${base%.*} '[_-]' ' '|perl -pe 's/(\w+)/\u$1/g')
|
|
echo -n "alt=\"$alt\" />"
|
|
</string>
|
|
<key>draggedFileExtensions</key>
|
|
<array>
|
|
<string>png</string>
|
|
<string>jpeg</string>
|
|
<string>jpg</string>
|
|
<string>gif</string>
|
|
</array>
|
|
<key>name</key>
|
|
<string>Insert Image With Dimensions</string>
|
|
<key>output</key>
|
|
<string>insertAsSnippet</string>
|
|
<key>scope</key>
|
|
<string>text.html</string>
|
|
<key>uuid</key>
|
|
<string>2AFCB76A-1D12-4520-A3B7-30A7F527DA1A</string>
|
|
</dict>
|
|
</plist>
|