btwael / mammouth

Unfancy PHP
http://mammouth.boutglay.com
MIT License
214 stars 22 forks source link

interpolation in html #54

Closed Manaus closed 8 years ago

Manaus commented 9 years ago

Hello, my opinion is that it would be a good idea to make html interpolation like

<a href="{{> page.url }}">{{> page.title }}</a>

or something similar, {{= page.title }} maybe

Manaus commented 8 years ago

Sorry has this issue been addressed? Cannot find any reference... Thanks

btwael commented 8 years ago

Working on this :+1:

btwael commented 8 years ago

@Manaus Please try if this feature works well (the github master version, not npm or website) Now <a href="{{> page.url }}">{{> page.title }}</a> will be compiled into <a href="<?php echo $page->url; ?>"><?php echo $page->title; ?></a>