Templating Engines are cool, but why are they F**KING AMAZING!?!?! The reason is you can use them for much more than templating your websites. Whether it is xml, RSS feeds, email templates, letters, you can use templating for ANYTHING and I will show you how.
So, the initial thing that makes them awesome is that they allow you to write HTML.
Great, I got it working in my site, but what else can I do with this templating stuff? What if I told you, you could use that same HTML template and use it to display as an email out to a user:
Now, all those things, I just told you about, you could use with handlebars, EJS (which I use), Jade and many more. But how does this help me with my programming in server side code? Well, at least for C#, enter Razor Engine . Razor engine is awesome because now it allows you to defer some code to be executed at runtime. More specifically, I had some issues where we have to deliver documents to many different investors, and each investor has different naming conventions. Razor would allow you to defer programming this until later, WITHOUT STOPING YOUR APP AT ALL. MIND BLOWN!!! Let’s take a look: