I want to write my own template engine within another plugins similar to smarty.
<body>
<p><?php echo $paragraph; ?></p>
<i><?php echo date("l"); ?></i>
</body>
But I want to write as below
<body>
<p>{paragraph}</p>
<i>{day}</i>
</body>
How can i write engine as upper.
Presumably, you are looking for something along the lines of the following: