> From: Igor <igoru...@gmail.com>
> First of all i want to say shpaml is a nice piece of code :)
>
> The name shpaml one the beginning was hard to write or spell but now
> its fun to shpaml, shpaml, shpaml ... no more typos :)
Thanks!
This...
> h5 | Info about engine $Name with Serial no. $Serial.
> .list_exampl
> ol
> li | $List1
> ol
> li | $List2
>
...converts to...
> <h5 | Info about engine $Name with Serial no. $Serial.>
> <-- here ?
> <div class="list_exampl">
> <ol>
> <li>$List1</li>
> </ol>
> <ol>
> <li>$List2</li>
> </ol>
> </div>
> </h5>
> Could someone explain what im doing wrong or admit it's a bug?
Just dedent .list_exampl
Indentation takes precedence over the pipe. If there is an indented block, it
assume the h5 tag is to enclose everything.
Just dedent .list_exampl
Indentation takes precedence over the pipe. If there is an indented block, it
assume the h5 tag is to enclose everything.