Skip to content

Instantly share code, notes, and snippets.

@danielsamuels
Last active August 29, 2015 14:20
Show Gist options
  • Save danielsamuels/45f86eeabf8fc2ed9c3d to your computer and use it in GitHub Desktop.
Save danielsamuels/45f86eeabf8fc2ed9c3d to your computer and use it in GitHub Desktop.
# Fix no spaces after opening braces
\{([\{|%])(\w+) -> {\1 \2
# Fix no spaces before closing braces
([\w']+)([}|%])\} -> \1 \2}
# Test cases
{{ row 1 }}
{{row2}}
{% row 3 %}
{%row 4%}
# Sed replacement
sed s/'{\([{%]\)\([^ ]\)/{\1 \2'/g testfile.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment