After creating a page, it appears that suddenly Grav is escaping generated html, so I see the resulting characters on the screen, not rendered as HTML.
For example, here is the source code of the of my site:
<head>
<meta charset="utf-8" />
<title>PoInt developer documentation</title>
<meta name="generator" content="GravCMS" />
<meta name="description" content="PoInt developer documentation" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no" />
<link rel="alternate" type="application/atom+xml" href="https://mysite.ca/point/public/documentation/developer/feed:atom" title="Atom Feed" />
<link rel="alternate" type="application/rss+xml" href="https://mysite.ca/point/public/documentation/developer/feed:rss" title="RSS Feed" />
<link rel="icon" type="image/png" href="/point/public/documentation/developer/user/themes/learn2/images/favicon.png">
<link href="/point/public/documentation/developer/user/themes/learn2/css-compiled/nucleus.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/themes/learn2/css-compiled/theme.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/themes/learn2/css/font-awesome.min.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/plugins/breadcrumbs/css/breadcrumbs.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/plugins/highlight/css/learn.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/plugins/login/css/login.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/plugins/form/assets/form-styles.css" type="text/css" rel="stylesheet" />
<link href="/point/public/documentation/developer/user/themes/learn2/css/featherlight.min.css" type="text/css" rel="stylesheet" />
<script src="/point/public/documentation/developer/assets/aee837ac0839208f94e8d1134eaaee6e.js" type="text/javascript" ></script>
<script>
$(document).ready(function() {
anchors.options = {
visible: 'hover',
placement: 'right',
truncate: 64
};
anchors.add('#body h2, #body h3, #body h4, #body h5');
});
hljs.initHighlightingOnLoad();
</script>
</head>
What possible setting could be doing this? I’ve got the latest of everything, and ran composer update
.