Skip to content

Instantly share code, notes, and snippets.

@29decibel
29decibel / gist:8678879
Last active January 4, 2016 21:09
vim stringify raw template
" little vim function
" make raw contents string
" turn following raw template
" <div class="show">
" <span>{{data.name}}</span>
" </div>
" into string:
" '<div class="show">' +
" '<span>{{data.name}}</span>' +
" '</div>'