Completed
Push — master ( 8f8e3f...23d7bb )
by Colin
36s
created

src/Converter/ParagraphConverter.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace League\HTMLToMarkdown\Converter;
4
5
use League\HTMLToMarkdown\ElementInterface;
6
7
class ParagraphConverter implements ConverterInterface
8
{
9
    /**
10
     * @param ElementInterface $element
11
     *
12
     * @return string
13
     */
14 27
    public function convert(ElementInterface $element)
15
    {
16 27
        $value = $element->getValue();
17
18 27
        $markdown = '';
19
20 27
        $lines = preg_split('/\r\n|\r|\n/', $value);
21 27
        foreach ($lines as $line) {
22
            /*
23
             * Some special characters need to be escaped based on the position that they appear
24
             * The following function will deal with those special cases.
25
             */
26 27
            $markdown .= $this->escapeSpecialCharacters($line);
27 27
            $markdown .= "\n";
28 27
        }
29
30 27
        return trim($markdown) !== '' ? rtrim($markdown) . "\n\n" : '';
31
    }
32
33
    /**
34
     * @return string[]
35
     */
36 78
    public function getSupportedTags()
37
    {
38 78
        return array('p');
39
    }
40
41
    /**
42
     * @param string $line
43
     *
44
     * @return string
45
     */
46 27
    private function escapeSpecialCharacters($line)
47
    {
48 27
        $line = $this->escapeHeaderlikeCharacters($line);
49 27
        $line = $this->escapeBlockquotelikeCharacters($line);
50 27
        $line = $this->escapeOrderedListlikeCharacters($line);
51 27
        $line = $this->escapeListlikeCharacters($line);
52
53 27
        return $line;
54
    }
55
56
    /**
57
     * @param string $line
58
     *
59
     * @return string
60
     */
61 27 View Code Duplication
    private function escapeBlockquotelikeCharacters($line)
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
62
    {
63 27
        if (strpos(ltrim($line), '>') === 0) {
64
            // Found a > char, escaping it
65 3
            return '\\' . ltrim($line);
66
        } else {
67 27
            return $line;
68
        }
69
    }
70
71
    /**
72
     * @param string $line
73
     *
74
     * @return string
75
     */
76 27 View Code Duplication
    private function escapeHeaderlikeCharacters($line)
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
77
    {
78 27
        if (strpos(ltrim($line), '--') === 0) {
79
            // Found a -- structure, escaping it
80 3
            return '\\' . ltrim($line);
81
        } else {
82 27
            return $line;
83
        }
84
    }
85
86
    /**
87
     * @param string $line
88
     *
89
     * @return string
90
     */
91 27
    private function escapeOrderedListlikeCharacters($line)
92
    {
93
        // This regex will match numbers ending on ')' or '.' that are at the beginning of the line.
94 27
        if (preg_match('/^[0-9]+(?=\)|\.)/', $line, $match)) {
95
            // Found an Ordered list like character, escaping it
96 3
            return substr_replace($line, '\\', strlen($match[0]), 0);
97
        } else {
98 27
            return $line;
99
        }
100
    }
101
102
    /**
103
     * @param string $line
104
     *
105
     * @return string
106
     */
107 27
    private function escapeListlikeCharacters($line)
108
    {
109 27
        if (strpos(ltrim($line), '- ') === 0 || strpos(ltrim($line), '+ ') === 0) {
110
            // Found an list like character, escaping it
111 3
            return '\\' . ltrim($line);
112
        } else {
113 27
            return $line;
114
        }
115
    }
116
}
117