jonathan-reichardt/markdown-task-lists

Frok from kirra/markdown-task-lists. Support Github's Task Lists in a cebe/markdown parser.

v1.0.4 2020-11-26 14:17 UTC

This package is auto-updated.

Last update: 2024-04-26 21:28:37 UTC


README

Forked from kirra/markdown-task-lists for some minor changes.

A trait to extend cebe/markdown with Task Lists support.

Installation

PHP 7.1 or higher is required to use it.

composer require jonathan-reichardt/markdown-task-lists

Usage

To parse a Task List you need to make your own parser, and let it use the TaskListsTrait.

class MyParser extends \cebe\markdown\Markdown {
	use JonathanReichardt\Markdown\TaskListsTrait;
}

$parser = new MyParser();
$parser->parse("- [ ] Open"); // Will return a list with an open checkbox.

Everything after the checkbox will be parsed as inline elements. So you can still apply every inline style your parser supports.

Usage in your own parser

If you build a fully custom parser, make sure it includes cebe\markdown\block\ListTrait, as the checkbox only works within a list.