| 1 | <?php |
||
| 9 | class EmphasisConverter implements ConverterInterface, ConfigurationAwareInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Configuration |
||
| 13 | */ |
||
| 14 | protected $config; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param Configuration $config |
||
| 18 | */ |
||
| 19 | 84 | public function setConfig(Configuration $config) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param ElementInterface $element |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | 12 | public function convert(ElementInterface $element) |
|
| 30 | { |
||
| 31 | 12 | $tag = $element->getTagName(); |
|
| 32 | 12 | $value = $element->getValue(); |
|
| 33 | |||
| 34 | 12 | if (!trim($value)) { |
|
| 35 | 3 | return $value; |
|
| 36 | } |
||
| 37 | |||
| 38 | 12 | if ($tag === 'i' || $tag === 'em') { |
|
| 39 | 9 | $style = $this->config->getOption('italic_style'); |
|
| 40 | 6 | } else { |
|
| 41 | 9 | $style = $this->config->getOption('bold_style'); |
|
| 42 | } |
||
| 43 | |||
| 44 | 12 | $prefix = ltrim($value) !== $value ? ' ' : ''; |
|
| 45 | 12 | $suffix = rtrim($value) !== $value ? ' ' : ''; |
|
| 46 | |||
| 47 | 12 | return $prefix . $style . trim($value) . $style . $suffix; |
|
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string[] |
||
| 52 | */ |
||
| 53 | 84 | public function getSupportedTags() |
|
| 57 | } |
||
| 58 |