Open rslnk opened 8 years ago
Contrary to the README.md example nameless attribute tag(__=php_function()) produces: <tag __="<?php echo htmlspecialchars(php_function(), ENT_QUOTES, 'UTF-8'); ?>"></tag>. Note that php function is wrapped in unnecessary __="<php_function_name>".
tag(__=php_function())
<tag __="<?php echo htmlspecialchars(php_function(), ENT_QUOTES, 'UTF-8'); ?>"></tag>
__="<php_function_name>"
Contrary to the README.md example nameless attribute
tag(__=php_function())
produces:<tag __="<?php echo htmlspecialchars(php_function(), ENT_QUOTES, 'UTF-8'); ?>"></tag>
. Note that php function is wrapped in unnecessary__="<php_function_name>"
.