= com.jessebrault.ssg
Jesse Brault
v0.1.0
:toc:
:source-highlighter: rouge
*com.jessebrault.ssg* is a static site generator written in Groovy, giving access to the entire JVM ecosystem through its templating system.
== Some Examples
.Tag Builder
[source,groovy]
----
def a = tagBuilder.a(href: 'hello.html', 'Hello!') // <1>
assert a == 'Hello!'
out << a // <2>
----
<1> Create an tag.
<2> Output the tag in the current script block.