Fandom Developers Wiki

This is the talk page for discussing improvements to the Global Lua Modules/Accordion page.

Bug with a list[]

A list seem buggy when we uses it on the first line in content. I'm not good at English so I may not explained it well, you can see this article: https://lordofthemysteries.fandom.com/wiki/Acting_Method. When we uses a list, the first list is not change to a bullet list.

Also some of lists are indented for unknown reason: (see on: Sequence: 7: Psychiatrist, Sequence 7: Seafarer)

--Zilch 06:10, 12 December 2022 (UTC)

Hi! I'm not sure why it doesn't parse correctly wikitext lists (the same problem happens with tables, in which you have to use {{!}} replacing all pipe characters (|) in them). I'd love to get that fixed but I don't really know how to do that to be honest. In the meantime, use HTML lists inside accordions, those work perfectly fine. It's syntax is like this:

Wikitext HTML Output
* Foo
* Bar
** Baz
<ul>
    <li>Foo</li>
    <li>Bar
        <ul>
            <li>Baz</li>
        </ul>
    </li>
</ul>
  • Foo
  • Bar
    • Baz

^ I used indentation here to clearly show where each tag is as to not confuse you (at least, not too much)

Hope it helps!

Polymeric (talk) 13:59, 12 December 2022 (UTC)

That's good. Thank you so much for your edited on the article. :)
--Zilch 17:34, 12 December 2022 (UTC)