bradchoate / text-textile

Text::Textile -- Perl module for handling Textile format
20 stars 11 forks source link

No formatting with == not working correctly #16

Closed j-schulz closed 9 years ago

j-schulz commented 9 years ago

Example:

use Text::Textile;
print Text::Textile->new->process("foo==*test*==bar"), "\n";

The output is

<p>foo==*test*==bar</p>

but the output should be

<p>foo*test*bar</p>
j-schulz commented 9 years ago

Sorry, I was wrong.