We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5f537 commit 7c08791Copy full SHA for 7c08791
1 file changed
Transpilers/Templates/CSS.Template.psx.ps1
@@ -113,7 +113,8 @@ process {
113
# Then walk over each key/valye in the dictionary
114
$innerCss = $(@(foreach ($kv in $inDictionary.GetEnumerator()) {
115
if ($kv.Value -isnot [string]) {
116
- $kv.Key + ' ' + "$($kv.Value | ToCSS -Depth ($depth + 1))"
+ $kv.Key + ' ' + "$($kv.Value |
117
+ & $MyInvocation.MyCommand.ScriptBlock -Depth ($depth + 1))"
118
}
119
else {
120
$kv.Key + ':' + $kv.Value
0 commit comments