teknologi-umum / akademi

Kumpulan ide untuk berbagai macam proyek
MIT License
5 stars 0 forks source link

HTPL - Hyper Text Programming Language #2

Open ronnygunawan opened 3 years ago

ronnygunawan commented 3 years ago

Basically set of web components tags which allows us to code an app using only HTML tags:

Tags (draft)

<if cond=""></if>
<else></else>
<elseif cond=""></elseif>
<switch value=""></switch>
<case value=""></case>
<for var="" in=""></for>
<while cond=""></while>
<data var="" src="" />

Example:

<body>
  <data var="cities" src="/cities.json" />
  <select>
    <for var="city" in="cities">
      <bind prop="value" value="city">
        <option><text value="city" /></option>
      </bind>
    </for>
  </select>
</body>