Mode Of Operation

Qgoda basically copies files for deployment, optionally cooking the content with processor plug-ins.

Qgoda's general mode of operation is very similar to other static site generators for example Jekyll or Hugo. It recursively copies all files it finds from the source directory (configuration variable srcdir) into the destination directory _site (configuration variable site). The destination directory is usually the document root of a web server. Files enhanced by additional meta information found in front matter are piped through configurable chains of processor plug-ins.

---
title: The Importance of Being Awesome
description: Everything has to be awesome.
---
## About Awesomeness

This blog post is about being awesome.

The part between the two lines consisting of --- is the front matter as YAML.

Asset Selection

Files to be copied are selected using a simple naming convention. All files or directories starting with an underscore (_site, _include, _views, ...) are ignored, everything else gets copied.

What are Assets?

All files selected for copying are referred to as assets in Qgoda. Files enriched with additional meta information in the document front matter are conventionally called cooked content, cooked assets or simply documents. Unqualified content is called raw.

Default Processor Chain

Documents are generally processed in two passes in Qgoda.

Pass 1 - Markdown

In the first pass, your markdown input files are converted to HTML with a Markdown processor:

---
title: About Me
---
## About Me

I am *here*.

That will result in the following HTML code:

<h2>About Me</h2>

<p>I am <em>here</em>.</p>

The front matter is stored as meta information and not directly rendered.

Pass 2 - HTML Wrapping with Template Toolkit

The current output is still an incomplete HTML document. It will almost always be wrapped into a complete document with the Template Toolkit using a view template, by default _views/default.html:

<!doctype html>
<html>
  <head>
    <title>[% asset.title | html %]</title>
  </head>
  <body>
    <h1>[% asset.title | html %]</title>
    <div>
      [% asset.content %]
    </div>
  </body>
</html>

Everything between [% ... %] is template syntax. [% asset.content %] is the result of pass 1, the markdown content transformed to HTML, while [% asset.title %] is the document title. It it is a good idea to pipe it through the html filter so that special characters get properly escaped.

In reality, the default chain is slightly more complex but the details of it are most of the time not important for you. In general, everything follows the Do-What-I-Mean™ paradigm.

This website uses cookies and similar technologies to provide certain features, enhance the user experience and deliver content that is relevant to your interests. Depending on their purpose, analysis and marketing cookies may be used in addition to technically necessary cookies. By clicking on "Agree and continue", you declare your consent to the use of the aforementioned cookies. Here you can make detailed settings or revoke your consent (in part if necessary) with effect for the future. For further information, please refer to our Privacy Policy.