Skip to content

Commit 15bb6c4

Browse files
authored
Remove slashes from the end of charset tags
For some reason, some scrapers (most notably Discord's OGP scraper) don't respect charset tags that do contain closing slashes.
1 parent d3988a9 commit 15bb6c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_includes/headertop.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta charset="UTF-8"/>
5-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
66

77
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
88
{% if page.title %}

0 commit comments

Comments
 (0)