Skip to content

Instantly share code, notes, and snippets.

@swinton
Created September 6, 2017 22:45
Show Gist options
  • Save swinton/a60ead8b5b35cfab98fbc2cb64ad458c to your computer and use it in GitHub Desktop.
Save swinton/a60ead8b5b35cfab98fbc2cb64ad458c to your computer and use it in GitHub Desktop.
function mdclean {
# TEST
# echo -e $"**TITLE**\n* hello\n\t* world\n \t* :wave:" | sed -E "s/^([ $(printf '\t')]*)\* /\1- /"
pbpaste | \
/usr/bin/sed -E "s/^([ $(printf '\t')]*)\* /\1- /" | \
pbcopy
}
mdclean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment