// Parse a document.
Phrontmatter::parse("---\nfoo: bar---\nThis is actual content!")->foo;
// Dependency injection example.
$phrontmatter->parse("---\nfoo: bar---\nThis is actual content!")->getContent();
// Parse a document with JSON meta data.
$phrontmatter->parse("---\n{\"foo\":\"bar\"}\n---\nThis is a document with JSON!", Phrontmatter::JSON)->getData();For more information on Front Matter, see the Jekyll documentation.
Require this package, with Composer, in the root directory of your project.
composer require bluebaytravel/phrontmatterAdd the service provider to config/app.php in the providers array.
BlueBayTravel\Phrontmatter\PhrontmatterServiceProvider::classIf you want you can use the facade. Add the reference in config/app.php to your aliases array.
'Phrontmatter' => BlueBayTravel\Phrontmatter\Facades\Phrontmatter::classPhrontmatter supports the following formatters:
- YAML (default)
- TOML
- JSON
Blue Bay Travel Phrontmatter is licensed under The MIT License (MIT).