We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is possibly a feature request but hopefully it's already possible.
Given a template
<div> <p>{{#x}}{{value}}{{/x}}</p> <p>{{msg-foo}}</p> </div>
Is there a method that can parse the template to predict the keys it uses?
E.g. in this case such a function would return.
['msg-foo', 'x']
My use cases are
msg-
$templateData =[]; foreach($keysPrefixedWithMsg as $key){ $templateData[$key] = generateDataValue($key): }
Let me know if I am not explaining well!
Thanks in advance!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is possibly a feature request but hopefully it's already possible.
Given a template
Is there a method that can parse the template to predict the keys it uses?
E.g. in this case such a function would return.
My use cases are
msg-
would be substituted beforehand e.g.Let me know if I am not explaining well!
Thanks in advance!
The text was updated successfully, but these errors were encountered: