Description

When you include WikiNames in an unordered list like so:

A list
 * Foo 
 * Bar
 * DocBook
 * Baz
 * Wooga
 * Doc``Book
 * Foo again

It is rendered with more space before and after the lines containing the wiki name than between the other lines. Here's an example:

A list

WikiWordSpaceBug.jpg

Steps to reproduce

  1. do this...

Example

Component selection

Details

MoinMoin Version

OS and Version

Python Version

Server Setup

Server Details

Language you are using the wiki in (set in the browser/UserPreferences)

Workaround

Discussion

yeah; that's because if you have a link (a) moinmoin wraps it around with a p tag.

<li>
    <p class="line891">
       <a href="/DocBook">DocBook</a>
           <span id="line-21" class="anchor"/>
    </p>
</li>

and in the common.css is defined:

## common.css (Line 40)
li p {
margin:0.25em 0;

so you could set margin to 0  margin: 0; . bye -- MarcelHäfner 2009-01-14 07:58:35

Plan


CategoryMoinMoinBug CategoryForMoin2

MoinMoin: MoinMoinBugs/ExtraSpaceBetweenListItems (last edited 2011-01-18 22:00:09 by ReimarBauer)