Skip to content

Instantly share code, notes, and snippets.

@alexbartlow
Created July 15, 2011 04:22
Show Gist options
  • Save alexbartlow/1084056 to your computer and use it in GitHub Desktop.
Save alexbartlow/1084056 to your computer and use it in GitHub Desktop.
Escape Chars
{
:close_dquote => encode_fallback('”', encoding, '"'),
:close_squote => encode_fallback('’', encoding, '\''),
:copyright => encode_fallback('©', encoding, '(c)'),
:ellipsis => encode_fallback('…', encoding, '...'),
:em_dash => encode_fallback('—', encoding, '---'),
:en_dash => encode_fallback('–', encoding, '--'),
:open_dquote => encode_fallback('“', encoding, '"'),
:open_squote => encode_fallback('‘', encoding, '\''),
:trademark => encode_fallback('®', encoding, '(r)'),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment