Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 307 Bytes

UPGRADE.md

File metadata and controls

9 lines (7 loc) · 307 Bytes

1.x to 2.0

  • Added new first parameter in constructor of LenientFrontMatterParser. If you used a custom separator, pass an empty array as first argument now.

    - $parser = new LenientFrontMatterParser("___+");
    + $parser = new LenientFrontMatterParser([], "___+");