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
AngularJS allows you to define alternative parameter delimiters, so you can say
[hello]
instead of
{{ hello }}
by simply redefining the delimiters:
var app = angular.module("MyTutorialApp",[], function($interpolateProvider) { $interpolateProvider.startSymbol('['); $interpolateProvider.endSymbol(']'); });
This is handy when you're using Angular with Django, and it would be nice if the plugin could understand that the delimiters have changed.
The text was updated successfully, but these errors were encountered:
@johnlindquist please add support of this
Sorry, something went wrong.
Because AngularJS is now moved to the JetBrains repository, this issue is now tracked in the YouTrack as WEB-10978.
No branches or pull requests
AngularJS allows you to define alternative parameter delimiters, so you can say
[hello]
instead of
{{ hello }}
by simply redefining the delimiters:
This is handy when you're using Angular with Django, and it would be nice if the plugin could understand that the delimiters have changed.
The text was updated successfully, but these errors were encountered: