File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -28683,6 +28683,11 @@ async function transform_blog(
28683
28683
file: blogs[i].name,
28684
28684
content: doc.contents.toString(),
28685
28685
date: dates[i],
28686
+ description: doc.data.frontmatter.description,
28687
+ author: {
28688
+ name: doc.data.frontmatter.author,
28689
+ url: doc.data.frontmatter.authorURL,
28690
+ }
28686
28691
};
28687
28692
})
28688
28693
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));
Original file line number Diff line number Diff line change @@ -27446,6 +27446,11 @@ async function transform_blog(
27446
27446
file: blogs[i].name,
27447
27447
content: doc.contents.toString(),
27448
27448
date: dates[i],
27449
+ description: doc.data.frontmatter.description,
27450
+ author: {
27451
+ name: doc.data.frontmatter.author,
27452
+ url: doc.data.frontmatter.authorURL,
27453
+ }
27449
27454
};
27450
27455
})
27451
27456
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));
You can’t perform that action at this time.
0 commit comments