AbstractXan / Mizi

A simple markdown to website generator written in C++.

Home Page:https://abstractxan.xyz/site/mizi__site_generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Creating a Template Parser

AbstractXan opened this issue · comments

Parse and store templates:

@@Card(title,desc)
<h1>$title$<h1>
<p>$desc$</p>
@@

Render templates:
?Card("Hello","World")

Rendered HTML:

<h1>Hello<h1>
<p>World</p>