diff options
author | OvidiusCicero <OvidiusCicero@users.noreply.github.com> | 2018-05-01 20:29:04 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-05-01 11:29:04 -0700 |
commit | 5ced96c0cc296ab271b6b8d1a20ba535486d3f82 (patch) | |
tree | e5aee81dbb410900ee22ceaa364af3b57a527b19 /data | |
parent | 3d766b5c442fc9ff198fe2d3978418343e0bd12f (diff) | |
download | pandoc-5ced96c0cc296ab271b6b8d1a20ba535486d3f82.tar.gz |
Make template polyglot (#4606)
This line: `<link rel="stylesheet" href="$css$">` is not valid XML.
Making it self-closing makes the template polyglot.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default.html5 | 2 |
1 files changed, 1 insertions, 1 deletions
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$ |