1: <?php declare(strict_types=1);
2:
3: namespace Salient\Console\Format;
4:
5: use Salient\Console\ConsoleUtil;
6: use Salient\Contract\Console\Format\TagAttributesInterface;
7:
8: /**
9: * Applies Markdown formatting
10: *
11: * @api
12: */
13: class MarkdownFormat extends AbstractFormat
14: {
15: use EncloseTrait;
16:
17: /**
18: * @inheritDoc
19: */
20: public function apply(string $string, $attributes = null): string
21: {
22: if ($string === '') {
23: return '';
24: }
25:
26: $before = $this->Before;
27: $after = $this->After;
28:
29: $tag = $attributes instanceof TagAttributesInterface
30: ? $attributes->getOpenTag()
31: : '';
32:
33: if ($tag === '##') {
34: return $this->enclose($string, '## ', '');
35: }
36:
37: if (
38: ($tag === '_' || $tag === '*') && (
39: !$attributes instanceof TagAttributesInterface
40: || !$attributes->hasChildren()
41: )
42: ) {
43: /** @var non-empty-string */
44: $string = ConsoleUtil::removeEscapes($string);
45: return $this->enclose($string, '`', '`');
46: }
47:
48: if ($before === '`') {
49: return $this->enclose($string, '**`', '`**');
50: }
51:
52: if ($before === '```') {
53: return $attributes instanceof TagAttributesInterface
54: ? $this->enclose(
55: $string,
56: $tag . $attributes->getInfoString() . "\n",
57: "\n" . $attributes->getIndent() . $tag,
58: )
59: : $this->enclose(
60: $string,
61: $tag . "\n",
62: "\n" . $tag,
63: );
64: }
65:
66: return $this->enclose($string, $before, $after);
67: }
68:
69: /**
70: * @inheritDoc
71: */
72: protected static function getTagFormats(): ?TagFormats
73: {
74: return (new TagFormats(false, true))
75: ->withFormat(self::TAG_HEADING, new self('***', '***'))
76: ->withFormat(self::TAG_BOLD, new self('**', '**'))
77: ->withFormat(self::TAG_ITALIC, new self('*', '*'))
78: ->withFormat(self::TAG_UNDERLINE, new self('*<u>', '</u>*'))
79: ->withFormat(self::TAG_LOW_PRIORITY, new self('<small>', '</small>'))
80: ->withFormat(self::TAG_CODE_SPAN, new self('`', '`'))
81: ->withFormat(self::TAG_CODE_BLOCK, new self('```', '```'));
82: }
83: }
84: