1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the league/commonmark-ext-smartpunct package. |
5
|
|
|
* |
6
|
|
|
* (c) Colin O'Dell <[email protected]> |
7
|
|
|
* |
8
|
|
|
* Original code based on the CommonMark JS reference parser (http://bitly.com/commonmark-js) |
9
|
|
|
* - (c) John MacFarlane |
10
|
|
|
* |
11
|
|
|
* For the full copyright and license information, please view the LICENSE |
12
|
|
|
* file that was distributed with this source code. |
13
|
|
|
*/ |
14
|
|
|
|
15
|
|
|
namespace League\CommonMark\Ext\SmartPunct; |
16
|
|
|
|
17
|
|
|
use League\CommonMark\ElementRendererInterface; |
18
|
|
|
use League\CommonMark\HtmlElement; |
19
|
|
|
use League\CommonMark\Inline\Element\AbstractInline; |
20
|
|
|
use League\CommonMark\Inline\Renderer\InlineRendererInterface; |
21
|
|
|
|
22
|
|
|
final class QuoteRenderer implements InlineRendererInterface |
23
|
|
|
{ |
24
|
|
|
/** |
25
|
|
|
* @param AbstractInline $inline |
26
|
|
|
* @param ElementRendererInterface $htmlRenderer |
27
|
|
|
* |
28
|
|
|
* @return HtmlElement|string|null |
29
|
|
|
*/ |
30
|
42 |
|
public function render(AbstractInline $inline, ElementRendererInterface $htmlRenderer) |
31
|
|
|
{ |
32
|
42 |
|
if (!$inline instanceof Quote) { |
33
|
3 |
|
throw new \InvalidArgumentException(sprintf('Expected an instance of "%s", got "%s" instead', Quote::class, get_class($inline))); |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
// Handles unpaired quotes which remain after processing delimiters |
37
|
39 |
|
if ($inline->getContent() === Quote::SINGLE_QUOTE) { |
38
|
|
|
// Render as an apostrophe |
39
|
12 |
|
return Quote::SINGLE_QUOTE_CLOSER; |
40
|
33 |
|
} elseif ($inline->getContent() === Quote::DOUBLE_QUOTE) { |
41
|
|
|
// Render as an opening quote |
42
|
6 |
|
return Quote::DOUBLE_QUOTE_OPENER; |
43
|
|
|
} |
44
|
|
|
|
45
|
30 |
|
return $inline->getContent(); |
46
|
|
|
} |
47
|
|
|
} |
48
|
|
|
|