Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 431 Bytes

pr-9043.md

File metadata and controls

23 lines (18 loc) · 431 Bytes

Fix format on html with frontMatter (#9043 by @fisker)

<!-- Input -->
---
layout: foo
---

Test <a
href="https://prettier.io">abc</a>.

<!-- Prettier stable -->
TypeError: Cannot read property 'end' of undefined
  ...

<!-- Prettier master -->
---
layout: foo
---

Test <a href="https://prettier.io">abc</a>.