Issue Details (XML | Word | Printable)

Key: UWC-130
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Laura Kolker
Reporter: Justin Bertman
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Confluence Universal Wiki Converter

Extra bullet in code block list

Created: 04/May/07 04:14 PM   Updated: 09/May/07 03:00 PM
Component/s: Tikiwiki Converter
Affects Version/s: 42
Fix Version/s: 43

Time Tracking:
Not Specified

Environment:
tikiwiki 1.9.7
confluence 2.3.3 build 645

Labels:


 Description  « Hide
On test page "Trojan-Downloader-Zlob", under section "Third Party Research", there is an extra bullet in a list of code blocks. The last code block in the list has two bullets instead of only one.

Before conversion:
A bullet list of code blocks, the last code block only having one bullet
Current UWC conversion:
A bullet list of code blocks, the last code block having two bullets
Desired:
A bullet list of code blocks, the last code block only having one bullet



 All   Comments   Work Log   Change History   FishEye   Crucible   Builds      Sort Order: Ascending order - Click to sort in descending order
Laura Kolker added a comment - 09/May/07 02:30 PM
This is due to an extra newline in between the list items

The confluence current syntax looks like this:

** something

** something else

The newline between them is what's causing the extra bullet.


Laura Kolker added a comment - 09/May/07 02:33 PM
The tiki syntax for lists is basically the same as Confluence.
The only difference being that they don't add the ugly early bullet when newlines occur between nested list items.

Laura Kolker added a comment - 09/May/07 03:00 PM
Stripping out newlines between nested list items.

So:

* a
** a1

** a2

will become

* a
** a1
** a2