You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can currently update frontmatter within a .webc page like this:
---js
{
layout: "my-layout.webc",
title: "My page title",
currentDate: function() {
// You can have a JavaScript function here!
return (new Date()).toLocaleString();
}
}
---
It would be great if we could also do this within a component's <script> tag!
The text was updated successfully, but these errors were encountered:
We can currently update frontmatter within a
.webc
page like this:It would be great if we could also do this within a component's
<script>
tag!The text was updated successfully, but these errors were encountered: