===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-league-html-to-markdown-4.10.0/README.md-55-
php-league-html-to-markdown-4.10.0/README.md:56:The `$markdown` variable now contains the Markdown version of your HTML as a string:
php-league-html-to-markdown-4.10.0/README.md-57-
##############################################
php-league-html-to-markdown-4.10.0/README.md-192-
php-league-html-to-markdown-4.10.0/README.md:193:    `$converter = new HtmlConverter(array('header_style'=>'atx'));`
php-league-html-to-markdown-4.10.0/README.md-194-
##############################################
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php-43-            // Code block detected, newlines will be added in parent
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php:44:            $markdown .= '```' . $language . "\n" . $code . "\n" . '```';
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php-45-        } else {
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php-46-            // One line of code, wrapping it on one backtick, removing new lines
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php:47:            $markdown .= '`' . preg_replace('/\r\n|\r|\n/', '', $code) . '`';
php-league-html-to-markdown-4.10.0/src/Converter/CodeConverter.php-48-        }
##############################################
php-league-html-to-markdown-4.10.0/src/Converter/PreformattedConverter.php-47-        // Use three backticks
php-league-html-to-markdown-4.10.0/src/Converter/PreformattedConverter.php:48:        return "```\n" . $pre_content . "```\n\n";
php-league-html-to-markdown-4.10.0/src/Converter/PreformattedConverter.php-49-    }
##############################################
php-league-html-to-markdown-4.10.0/tests/HtmlConverterTest.php-192-        $this->html_gives_markdown('<pre><code class="language-php">&lt;?php //Some php code ?&gt;</code></pre>', "```php\n<?php //Some php code ?>\n```");
php-league-html-to-markdown-4.10.0/tests/HtmlConverterTest.php:193:        $this->html_gives_markdown("<pre><code class=\"language-php\">&lt;?php //Some multiline php code\n\$myVar = 2; ?&gt;</code></pre>", "```php\n<?php //Some multiline php code\n\$myVar = 2; ?>\n```");
php-league-html-to-markdown-4.10.0/tests/HtmlConverterTest.php-194-        $this->html_gives_markdown("<pre><code>&lt;p&gt;Multiline HTML&lt;/p&gt;\n&lt;p&gt;Here's the second line&lt;/p&gt;</code></pre>", "```\n<p>Multiline HTML</p>\n<p>Here's the second line</p>\n```");
##############################################
php-league-html-to-markdown-4.10.0/.pc/0003-Move-to-namespaced-PHPUnit-versions.patch/tests/HtmlConverterTest.php-192-        $this->html_gives_markdown('<pre><code class="language-php">&lt;?php //Some php code ?&gt;</code></pre>', "```php\n<?php //Some php code ?>\n```");
php-league-html-to-markdown-4.10.0/.pc/0003-Move-to-namespaced-PHPUnit-versions.patch/tests/HtmlConverterTest.php:193:        $this->html_gives_markdown("<pre><code class=\"language-php\">&lt;?php //Some multiline php code\n\$myVar = 2; ?&gt;</code></pre>", "```php\n<?php //Some multiline php code\n\$myVar = 2; ?>\n```");
php-league-html-to-markdown-4.10.0/.pc/0003-Move-to-namespaced-PHPUnit-versions.patch/tests/HtmlConverterTest.php-194-        $this->html_gives_markdown("<pre><code>&lt;p&gt;Multiline HTML&lt;/p&gt;\n&lt;p&gt;Here's the second line&lt;/p&gt;</code></pre>", "```\n<p>Multiline HTML</p>\n<p>Here's the second line</p>\n```");