From a497c002468d0e4b93bd318ec7faf0168e4413f8 Mon Sep 17 00:00:00 2001 From: Taylor Hunt Date: Tue, 15 Oct 2019 07:13:43 -0400 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20double-escape=20character=20ref?= =?UTF-8?q?erences=20in=20title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Example: at https://markojs.com/docs/marko-json/, renders `marko.json & marko-tag.json | Marko` in browser tabs. --- components/site-layout/index.marko | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/site-layout/index.marko b/components/site-layout/index.marko index 18cb6511..b3da79e4 100644 --- a/components/site-layout/index.marko +++ b/components/site-layout/index.marko @@ -1,7 +1,7 @@ - ${data.title ? data.title + ' | Marko' : 'Marko'} + <if(data.title)>$!{data.title} | </if>Marko