Am 18.02.2017 um 20:58 schrieb Carl Sturtivant:

On Sun, 12 Feb 2017 18:59:41 GMT, Carl Sturtivant wrote:

1.
I had a link tag in the head of a top level template used to inherit from, followed by a block declaration.

        link(rel="icon", type="image/png", href="images/favicon.png")
        block header

The compiler complained that the link tag had contents when this file was compiled. A blank line between the two solved this problem. There was no inappropriate extra indentation in any f the files inheriting from this so substituted tags should have been at the same nesting level not nominally inside the link tag.

A look at the white space in this file showed that there were two trailing spaces at the end of the link line. When I removed just one of them, the project compiled just fine.

Okay, that makes sense in a way, because the second space will be
treated as text content. But the check in this case obviously could
simply ignore white space. I'll add that.