AngularJS alongside nunjucks?
See original GitHub issueNunjucks looks more fully featured than tools like ejs,
but jutst looking now at the doubly curly brace syntax - {{ }}
,
won’t that cause conflicts if you are using AngularJS?
If so, what are the work-around options? Changing
Angular’s syntax to be something other than {{ }}
would feel very kludgy.
Issue Analytics
- State:
- Created 8 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
When should I use Nunjucks with Angular? - Stack Overflow
Nunjucks is static while AngularJS is dynamic. With Nunjucks, you need to process you file to render pages.
Read more >Multiple-Page-Application (MPA) in NestJS with Nunjucks
Nunjucks is a full-featured templating engine for JavaScript. It is heavily inspired by jinja2. View the docs here. Now let's start creating an...
Read more >Gulp and Nunjucks 02 - Getting started with Nunjucks Templates
In this tutorial I show you how to setup Nunjucks with Gulp, using the gulp- nunjucks -render package. We extend our Gulp knowledge...
Read more >I have a hard time adopting frameworks because of the all-or ...
Are nunjucks and jinja2 pretty compatible now, to the point that you're actually sharing templates across client and server? The docs currently discourage...
Read more >Template Engines in Node JS with Express | EJS Vs Nunjucks
Template Engines in node js with expressjs. How to configue a template engine in nodejs and express. EJS Vs Nunjucks vs Mustache Vs...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yes, you can customize the tag syntax.
Documentation here: https://mozilla.github.io/nunjucks/api.html#customizing-syntax
Thanks a ton