We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use Redactor as the entry point for text. This is rich editor so the text for example when I enter a simple URL is coming raw like this:
<p>https://github.com/kzykhys/Ciconia</p>
I'm rendering the with the extension Gfm\UrlAutoLinkExtension() and the results are these:
<p><p><a href="https://github.com/kzykhys/Ciconia</">https://github.com/kzykhys/Ciconia</</a>p></p>
I'm processing the text with Ciconia with the following extensions:
$ciconia = new Ciconia(); $ciconia->removeExtension('header'); $ciconia->removeExtension('code'); $ciconia->removeExtension('image'); $ciconia->addExtension(new Gfm\UrlAutoLinkExtension()); $text = $ciconia->render($text);
My guess is there's something wrong with regexp being used but not sure how to fix it. I'll appreciate any help.
Regards
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use Redactor as the entry point for text. This is rich editor so the text for example when I enter a simple URL is coming raw like this:
I'm rendering the with the extension Gfm\UrlAutoLinkExtension() and the results are these:
I'm processing the text with Ciconia with the following extensions:
My guess is there's something wrong with regexp being used but not sure how to fix it. I'll appreciate any help.
Regards
The text was updated successfully, but these errors were encountered: