jygastaud / hugo-microtypo

That project is a try to build a Hugo module by porting [Jekyll Microtypo](https://github.com/borisschapira/jekyll-microtypo)
8 stars 4 forks source link

True is being displayed before the rendered value #9

Closed DirtyF closed 3 years ago

DirtyF commented 3 years ago

Issue

Given I run Hugo 0.80 When I call {{ partial "content.html" .Title }} And I call {{ partial "content.html" .Description }} Then trueis displayed in front of {{ .Title }} And trueis displayed in front of {{ .Description }}

issue-hugo-microtypo

Expected

Given I run Hugo 0.80 When I call {{ partial "content.html" .Title }} When I call {{ partial "content.html" .Description }} Then only {{ .Title }} is rendered And only {{ .Description }} is rendered

expected