From 5ced96c0cc296ab271b6b8d1a20ba535486d3f82 Mon Sep 17 00:00:00 2001
From: OvidiusCicero <OvidiusCicero@users.noreply.github.com>
Date: Tue, 1 May 2018 20:29:04 +0200
Subject: [PATCH] Make template polyglot (#4606)

This line:  `<link rel="stylesheet" href="$css$">` is not valid XML.
Making it self-closing makes the template polyglot.
---
 data/templates/default.html5 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/templates/default.html5 b/data/templates/default.html5
index 5c484f376..9c15107c0 100644
--- a/data/templates/default.html5
+++ b/data/templates/default.html5
@@ -29,7 +29,7 @@ $highlighting-css$
   </style>
 $endif$
 $for(css)$
-  <link rel="stylesheet" href="$css$">
+  <link rel="stylesheet" href="$css$" />
 $endfor$
 $if(math)$
   $math$