Send the current Draft from Drafts for iOS to Clean Links for iOS.
Create a new URL action with this x-callback url: clean-links://x-callback-url/clean?url=[[draft]]
<theme> | |
<!-- Window Style --> | |
<color id="foreground" red="0.8" green="0.9" blue="0.4" alpha="1.0" /> | |
<color id="background" red="0.16" green="0.16" blue="0.16" alpha="1.0" /> | |
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="no" /> | |
<!-- Text View Style --> | |
<color id="tag" red="0.5" green="0.5" blue="0.5" alpha="1.0" /> | |
<color id="handle" extendsColorID="foreground" /> | |
<color id="insertionPoint" red="1.0" green="1.0" blue="1.0" alpha="1.0" /> |
[ | |
//** CUSTOM SET_LAYOUT BINDINGS **// | |
{ | |
"keys": ["super+alt+left"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.33, 1.0], |
Send the current Draft from Drafts for iOS to Clean Links for iOS.
Create a new URL action with this x-callback url: clean-links://x-callback-url/clean?url=[[draft]]
Ideas and anecdotes from the venerable Matt Griffin
$(document).ready(function() { | |
var resizer = function () { | |
var height = 0; | |
var tallest_h2; | |
$('.article-title').find('h2').each(function () { | |
if ($(this).outerHeight() > height ) { | |
tallest_h2 = this; | |
height = $(this).outerHeight(); | |
} | |
}); |
You know all of those questions about your html <head>
element that have kept you lying awake at night? Right. We're going to address each one, clear them up, and have you sleeping soundly night after night in no time at all.
Character encoding specification: This declaration, contained within a <meta>
tag, tells the browser which character set you want your site to be rendered with. Failing to declare this on every page can lead to security vulnerabilities. Standard practice is to use UTF-8 encoding, and the declaration should be placed near the top of the <head>
tag:
<meta charset="utf-8">
Notes from the Tuts+ workflow tutorial on Sublime Text 2.
Come out and join the fun.