我的降价有一些额外的注释,看起来像这样:
---
path: "/"
date: "2018-10-12"
title: "xxxx"
description: "desccc"
---
some of the text
我怎样才能得到描述?
{
allMarkdownRemark(
sort: { order: DESC, fields: [frontmatter___date] }
limit: 1000
) {
edges {
node {
frontmatter {
path
title
date
}
}
}
}
}