pilishen / commonmark-attributes-extension

The Attributes extension adds a syntax to define attributes on the various HTML elements in markdown’s output.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CommonMark Attributes Extension

Packagist Build Status StyleCI Scrutinizer Code Quality Code Coverage SensioLabsInsight

The Attributes extension adds a syntax to define attributes on the various HTML elements in markdown’s output.

Installation

This project can be installed via Composer:

composer require webuni/commonmark-attributes-extension

Usage

use League\CommonMark\Converter;
use League\CommonMark\DocParser;
use League\CommonMark\Environment;
use League\CommonMark\HtmlRenderer;
use Webuni\CommonMark\AttributesExtension\AttributesExtension;

$environment = Environment::createCommonMarkEnvironment();
$environment->addExtension(new AttributesExtension());

$converter = new Converter(new DocParser($environment), new HtmlRenderer($environment));

echo $converter->convertToHtml('# Hello World!');

Syntax

The basic syntax was inspired by Kramdown‘s Attribute Lists feature.

You can assign any attribute to a block-level element. Just directly prepend or follow the block with a block inline attribute list. That consists of a left curly brace, optionally followed by a colon, the attribute definitions and a right curly brace:

> A nice blockquote
{: title="Blockquote title"}

{#id .class}
## Header

As with a block-level element you can assign any attribute to a span-level elements using a span inline attribute list, that has the same syntax and must immediately follow the span-level element:

This is *red*{style="color: red"}.

About

The Attributes extension adds a syntax to define attributes on the various HTML elements in markdown’s output.

License:MIT License


Languages

Language:PHP 90.3%Language:HTML 9.7%