Skip to content

Instantly share code, notes, and snippets.

@joshbtn
Created August 19, 2015 17:28
Show Gist options
  • Save joshbtn/a947e2828c7fac242104 to your computer and use it in GitHub Desktop.
Save joshbtn/a947e2828c7fac242104 to your computer and use it in GitHub Desktop.
Stupid simple mustash template expander
# Stupid simple mustash template expander
function Expand-Template(){
param(
[string] $template,
[hashtable] $scope
)
return iex $($template -replace '{{([^}]+)}}', "`$(`$scope.Get_Item('`$1'))")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment