orchestra / kurenai
This package is abandoned and no longer maintained.
The author suggests using the laravie/kurenai package instead.
Markdown document parser with metadata.
v0.2.0
2015-06-21 10:38 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- erusev/parsedown-extra: ~0.5
- league/commonmark: ~0.9.0
- mockery/mockery: 0.9.*
Suggests
- erusev/parsedown: Parsing markdown using erusev/parsedown (~1.5).
- erusev/parsedown-extra: Parsing markdown using erusev/parsedown-extra (~0.5).
- league/commonmark: Parsing markdown using league/commonmark (~0.9).
Conflicts
- daylerees/kurenai: ~1.0
This package is auto-updated.
Last update: 2022-02-01 12:47:54 UTC
README
Kurenai is a Markdown document parser which allows for extra metadata to be associated with the document.
Introduction
Confused? Let's take a look at how it works.
This is what your documents might look like:
title: This is my document title.
slug: this-is-the-slug
date: 12th December 1984
-------
This is my **markdown** content!
and here is how you will parse it with Kurenai :
<?php // Use the Kurenai document parser. use Kurenai\Document; use Kurenai\DocumentParser; use Kurenai\Parser\Parsedown; // Load our document source. $source = file_get_contents('my_document.md'); // Create a new document parser $parser = new DocumentParser(new Document(new Parsedown)); // Parse the loaded source. $document = $parser->parse($source); // To get the document content in raw markdown format.. // This is my **markdown** content! $rawMarkdown = $document->getContent(); // To get the converted HTML content.. // <p>This is my <strong>markdown</strong> content!</p> $html = $document->getHtmlContent(); // To access the full array of metadata // array( // 'title' => 'This is my document title.', // 'slug' => 'this-is-the-slug', // 'date' => '12th December 1984' // ); $metadata = $document->get(); // To access a piece of metadata by key (default: null).. // this-is-the-slug $slug = $document->get('slug');
Origin
Kurenai is a forked project from daylerees/kurenai.