-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.php
53 lines (42 loc) · 1.61 KB
/
basic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
declare(strict_types=1);
require dirname(__DIR__) . '/vendor/autoload.php';
use League\CommonMark\Environment\Environment;
use League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension;
use League\CommonMark\MarkdownConverter;
use Samwilson\CommonMarkShortcodes\Shortcode;
use Samwilson\CommonMarkShortcodes\ShortcodeExtension;
$environment = new Environment([
'shortcodes' => [
'shortcodes' => [
'inline-shortcode' => static function (Shortcode $shortcode) {
return 'Inline shortcode (with ' . count($shortcode->getAttrs()) . ' params)';
},
'block-shortcode' => static function (Shortcode $shortcode) {
return 'Block-level shortcode (with ' . count($shortcode->getAttrs()) . ' params):'
. '<pre>' . $shortcode->getBody() . '</pre>';
},
'quote' => static function (Shortcode $shortcode) {
return '<blockquote>' . $shortcode->getBody() . '<cite>' . $shortcode->getAttr('cite') . '</cite></blockquote>';
},
],
],
]);
$environment->addExtension(new CommonMarkCoreExtension());
$environment->addExtension(new ShortcodeExtension());
$converter = new MarkdownConverter($environment);
echo $converter->convert("
*Markdown* content with {inline-shortcode|foo|bar=''|baz=3} and…
{{{block-shortcode | name=test | unnamed-attr
Lorem ipsum content.
more
}}}
Postipsum.
")->getContent();
/* Output:
<p><em>Markdown</em> content with Inline shortcode (with 3 params) and…</p>
Block-level shortcode (with 3 params):<pre>
Lorem ipsum content.
more</pre>
<p>Postipsum.</p>
*/