eps
eps copied to clipboard
A templating engine for PowerShell
I just want to take a moment and say that when I went searching for templating in PowerShell, this was at the top of the search results. And after looking...
is this repo still maintained?
An unbalanced bracket in the template (not the powershell expression) causes an exception. For example, adding ( to the first example in the README: ``` $name = "Dave" Invoke-EpsTemplate -Template...
I know this repo is old, I'm really hoping someone is watching this, so here goes. I'm using eps to create tf files that are passed to modules. For one...
Would be lovely to see a Desired State Configuration Composite Resource wrapper around `eps`. Would allow one to be able to declaratively state/instantiate files from `eps` template. Something akin to...
Error output should be better and more helpful for template writers. See #21 for details. This should be done at the same time as better documentation for template troubleshooting (see...
At least: 1. How to debug a template. 1. How to get verbose output. 1. General idea of how the templating system works.
Say I have this `test.esp`: ```PowerShell Without underscore: With underscore: ``` If I run it directly on shell, it works fine: ``` $name = 'ABC' $name_value = 'ABC' Invoke-EpsTemplate -Path...
Hello ! Very interesting module. For my need, i would like to use "For" tags in templates. Equivalent in Twig is : `Members {% for user in users %} {{...
This is quite interesting, with PS 7.3.1 on Linux with EPS 1.0.0. I found another way to get the templating done, but maybe it'll help someone save time: this doesn't...