Forum

Thread tagged as: Question

Markitup: List within a list

Hi all,

Does anyone know if it's possible to create an unordered list within and unordered list using the markitup editor?

I need to end up with the output below:

<ul>
  <li>ABC</li>
  <li>
    <ul>
      <li>123</li>
    </ul>
  </li>
</ul

Any ideas?

cheers,

Alex

Alex Tebbutt

Alex Tebbutt 0 points

  • 5 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

Are you using Markdown or Textile?

Currently Textile, I can switch to Markdown if it's the way to go.

Drew McLellan

Drew McLellan 2638 points
Perch Support

In Textile you do:

* One
* Two
** a
** b
** c
* Three

Perfect, thanks.