Created
August 4, 2014 13:38
-
-
Save v1m/16a7358d1937352e7f52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Replaces 'smarT' quotes | |
%s/[]/"/g | |
" Replaces 'smart sIngle' quotes and backtick sIngle quotes (also covers 'smart' apostrophe) | |
%s/[`]/'/g | |
" Replaces 'smart' Hyphens | |
%s/ \| \|/ - /g | |
" Replaces 'backticK' quotes and 'double apostrophe' endquotes | |
%s/``\|''/"/g | |
" Replaces bullets with asterisks | |
%s//*/g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment