The following markup:

    1. Opbygning
      1. Databasen:
      2. Scriptet:
      3. Shell / Cron
      4. Hvad mangler?

is returned from this comment:

The nested lists are not properly nested. eg. the above markup should be indented for readability:

  1. Opbygning
    1. Databasen:
    2. Scriptet:
    3. Shell / Cron
    4. Hvad mangler?

Love the module :-)

I've attached the above text

CommentFileSizeAuthor
toc-markup.txt815 bytesholbech

Comments

deviantintegral’s picture

Can you also post the content of your node? You might need to play with options to choose the right level ranges.

--Andrew

casey’s picture

Current way of nesting:

<ol>
  <li><a ..>...</a></li>
  <ol>
    <li><a ..>...</a></li>
  </ol>
</ol>

Should be:

<ol>
  <li><a ..>...</a>
    <ol>
      <li><a ..>...</a></li>
    </ol>
  </li>
</ol>
deviantintegral’s picture

I've fixed this in CVS. Please test and if it works as expected I'll release a new version.

--Andrew

deviantintegral’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.