Skip Menu |

This queue is for tickets about the Text-WikiCreole CPAN distribution.

Report information
The Basics
Id: 58619
Status: open
Priority: 0/
Queue: Text-WikiCreole

People
Owner: Nobody in particular
Requestors: beakerchu [...] googlemail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.07
Fixed in: (no value)



The attached file should be rendered as a single preformatted block of text, with the braces removed. Text::WikiCreole instead renders it as ordinary text, with the octothorpe removed and interpreted as a list marker, and the braces present in the output. My OS: Ubuntu 10.4 (Lucid). Using perl 5.10.1, as packaged in Ubuntu. Using Text-WikiCreole-0.07, as packaged in Ubuntu.
Subject: wrong.wiki
Download wrong.wiki
application/octet-stream 202b

Message body not shown because it is not plain text.

On 2010-06-23 03:43:24, http://mooism.livejournal.com/ wrote: Show quoted text
> The attached file should be rendered
The problem here is the same as bug #51070. That is, this file uses DOS line endings and T::WC doesn't process files using that format. When the file is saved with Unix line endings, T::WC does process it correctly. As an alternative to changing the file, preprocess the contents before calling creole_parse using an expression such as $data =~ s{\r\n}{\n}g; Cheers, Dave