Am 11.04.2017 um 01:32 schrieb Steven Schveighoffer:

I just did an "upgrade" to my dub repository, and all of my diet
template spacing is messed up. What happened? I have fixed most of it
(seems to be the space between the tag and the contained text is now not
part of the inner text, leading to many words running together)

In addition, I want to make this work, and I can't get it to work:

| (
a(href="somelink")>< click here
| )

No matter what I try, I can't get that closing parenthesis to hug the
anchor tag.

Before, this worked just fine (and with just the > directive on the
anchor). Is this a bug, or am I missing something?

This pretty sure is a but. I'll have a look. A possible workaround would
be to disable pretty printing by passing a custom traits struct to render:

 @dietTraits struct DT { enum htmlOutputStyle = 

HTMLOutputStyle.compact; }

 render!("template.dt", DT, ...);