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 862886d commit 033acabCopy full SHA for 033acab
src/Compiler.php
@@ -196,10 +196,10 @@ public function convert(): string
196
throw new Exception('Generating html during conversion process failed.');
197
}
198
199
- $html = $this->replaceAttributeWithIfConditionPlaceholders($html);
200
$html = $this->addVariableBlocks($html);
201
$html = $this->replacePlaceholders($html);
202
$html = $this->replaceScopedPlaceholders($html);
+ $html = $this->replaceAttributeWithIfConditionPlaceholders($html);
203
204
$html = preg_replace('/<template>\s*(.*)\s*<\/template>/ism', '$1', $html);
205
$html = preg_replace('/<\/?template[^>]*?>/i', '', $html);
0 commit comments