FrontYAML

YAML Front matter parser

OTHER License

Downloads
5.1M
Stars
284
Committers
15

Bot releases are hidden (Show)

FrontYAML - 2.0.3 Latest Release

Published by mnapoli 8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/mnapoli/FrontYAML/compare/2.0.2...2.0.3

FrontYAML - 2.0.2

Published by mnapoli almost 3 years ago

Authorize symfony/yaml v6 by @Jibbarth in https://github.com/mnapoli/FrontYAML/pull/27

FrontYAML - 2.0.1

Published by mnapoli about 3 years ago

Obligatory 2.0.1 bugfix release: widens PHP types.

FrontYAML - 2.0.0

Published by mnapoli about 3 years ago

#26 Switches to CommonMark, which is a much better Markdown parser. Parsedown is no longer installed.

Version 2 also requires PHP 7.4.

Nothing else has changed.

FrontYAML - 1.8.0

Published by mnapoli almost 4 years ago

#23 Support PHP 8, dropped support for PHP 7.2

FrontYAML - 1.7.0

Published by mnapoli over 4 years ago

#21 Added support for Symfony 5 by @tomcoonen.

The required PHP version is now 7.2 or greater.

FrontYAML - 1.6.0

Published by mnapoli almost 7 years ago

  • #15 & #16: Symfony 4 support by @petk

Support for PHP 5.3 and HHVM was dropped. Since Composer is the only way supported to install this package users should not have a BC break.

FrontYAML - 1.5.2

Published by mnapoli about 8 years ago

#13 Fix regex escaping

FrontYAML - 1.5.1

Published by mnapoli over 8 years ago

Compatibility with Symfony 3 and 2

FrontYAML - 1.5.0

Published by mnapoli over 9 years ago

Added an adapter to use the League CommonMark package.

To use it, require league/commonmark and then create the FrontYAML parser using the bridge:

use \Mni\FrontYAML\Bridge\CommonMark\CommonMarkParser;

$parser = new Mni\FrontYAML\Parser(null, new CommonMarkParser());
FrontYAML - 1.4.1

Published by mnapoli almost 10 years ago

  • #7 Fixed the regex that was matching non-greedily
FrontYAML - 1.4.0

Published by mnapoli almost 10 years ago

  • #5 and #6: Support custom FrontYAML separators, e.g. HTML comments
FrontYAML - 1.3.0

Published by mnapoli almost 10 years ago

  • Fixed #3 (in #4): different EOLs between Unix and Windows was causing issues (by @Giuseppe-Mazzapica)
FrontYAML - 1.2.0

Published by mnapoli almost 10 years ago

  • Allow to provide a custom Parsedown instance into the ParsedownParser bridge. This allows to use ParsedownExtra.
FrontYAML - 1.1.0

Published by mnapoli about 10 years ago

Now requires Parsedown >= 1.0.

FrontYAML - 1.0.2

Published by mnapoli over 10 years ago

Fixed bugs with single line Markdown

FrontYAML - 1.0.1

Published by mnapoli over 10 years ago

PHP 5.3 compatibility

FrontYAML - 1.0.0

Published by mnapoli over 10 years ago

First version.