Skip to content

Instantly share code, notes, and snippets.

@4ov
Created June 13, 2021 15:53
Show Gist options
  • Save 4ov/79ced111dc647fd6d85bd58d538223cd to your computer and use it in GitHub Desktop.
Save 4ov/79ced111dc647fd6d85bd58d538223cd to your computer and use it in GitHub Desktop.
my lodash settings for templates
_.templateSettings = {
evaluate: /\~([^~]*?)\~/, ///{{--([\s\S]+?)}}/g,
interpolate: /{{([\s\S]+?)}}/g,
escape: /{{-([\s\S]+?)}}/g
};
// ~ eval ~
// {{ interpolate }}
// {{- escape }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment