# JQHTML Parser The JQHTML parser converts template files into JavaScript functions that use the component system. ## Quick Start - Common Patterns ### Basic Component with innerHTML (Most Common) ```jqhtml
<%= content() %>

Card Title

This is the card content.

``` This `content()` pattern is the **primary way** to compose components in JQHTML. It works like regular HTML - the innerHTML you pass gets rendered where `content()` is called. ### Container Component Example ```jqhtml
<%= content() %>

Any content here