Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 399 Bytes

forty-coins-attend.md

File metadata and controls

16 lines (13 loc) · 399 Bytes
astro
minor

Implement RFC #0017

  • New Markdown API
  • New Astro.glob() API
  • BREAKING CHANGE: Removed Astro.fetchContent() (replaced by Astro.glob())
// v0.25
- let allPosts = Astro.fetchContent('./posts/*.md');
// v0.26+
+ let allPosts = await Astro.glob('./posts/*.md');