saberland/saber





The issue has been solved
Refactor the page interface #332
egoist posted onGitHub
https://saber.land/docs/page-interface.html
We should not reuse the page.attributes
object, i.e. setting a new page.permalink
property instead of overriding page.attributes.permalink
Currently the behavior is inconsistent, sometimes we use page.attributes.permalink
the other times we use page.excerpt
π
Basically we will keep page.attributes
which is set by front matter or export const attributes = {}
, instead of modifying page.attributes
we should infer page
from page.attributes
and other information, e.g. page.slug
is inferred from page.attributes.slug
and the filename.
This will introduce breaking changes.