Skip Menu |

This queue is for tickets about the HTML-Format CPAN distribution.

Report information
The Basics
Id: 18126
Status: open
Priority: 0/
Queue: HTML-Format

People
Owner: Nobody in particular
Requestors: william [...] knowmad.com
Cc:
AdminCc:

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



Subject: Numbered lists output 2 periods
Sean, I noticed that when using numbered lists (e.g., ol) that FormatRTF will output two dots between the number and the item. For example, the following html: <ol> <li>Item 1</li> </ol> renders as: 1.. Item 1 William
From: william [...] knowmad.com
Here's one small change I made to support the inline style attribute when setting $align. There were three places in the patch where this would need to be added. I can resubmit the patch if you'd prefer. my ($align) = $node->attr('align') || $node->attr('style') =~ /text-align:\s*(\w+)/; William