When a mixin calls another mixin passing a variable with the same name as the parameter (e.g., +alert(message) where alert has param message), skip generating redundant const declaration since the variable is already in scope. Also adds missing alert.pug mixin for demo project.
3 lines
66 B
Plaintext
3 lines
66 B
Plaintext
mixin alert_error(message)
|
|
+alert(message)(class="alert-error")
|