Skip to content

v2.3.0 - Importing!

Latest
Compare
Choose a tag to compare
@esthedebeste esthedebeste released this 19 Nov 16:10
82a1083

Importing 8829ce5

You can import other poggies documents by using a template declaration-like syntax.

// component.pog
p "Hello from a component!"

// index.pog
$$component from "./component.pog"

h1 "Hello from the root!"
$component

// →→→ index.html
<h1>Hello from the root!</h1>
<p>Hello from a component!</p>