thephpleague / html-to-markdown

Convert HTML to Markdown with PHP
MIT License
1.77k stars 205 forks source link

All types of quotes are not converted #97

Closed dskanth closed 8 years ago

dskanth commented 8 years ago

I am trying to convert a small html sentence, that has a bunch of quotes (single and double). But the result is not correct. The sentence is: $html = '<p>Hey, &ldquo;Don&rsquo;t go out&rdquo;.</p>';

Here is my code:

<?php
require 'vendor/autoload.php';
use League\HTMLToMarkdown\HtmlConverter;

$converter = new HtmlConverter(array('header_style'=>'atx', 'strip_tags' => true));

$html = '<p>Hey, &ldquo;Don&rsquo;t go out&rdquo;.</p>';

$markdown = $converter->convert($html);
echo $markdown.'<br>'; exit;

Not sure whether the library is capable of converting this. Any ideas please.

dskanth commented 8 years ago

No problem, i have switched to the other markdown library, which is working well for my needs.