On Sun, 06 Apr 2008 19:24:41 -0500 John Griessen <[EMAIL PROTECTED]> wrote:
> <ul class="simple"> > <li><a class="reference" href="http://x">link1</a></li> > <li><a class="reference" href="http://x">link2</a></li> > <li><a class="reference" href="http://x">link3</a></li> > </ul> > > How would one control the outputting of the word simple? These are reStructuredText questions rather than leo questions, but that's ok. I think you want to use roles, or the class wrapper: http://docutils.sourceforge.net/docs/ref/rst/directives.html#custom-interpreted-text-roles http://docutils.sourceforge.net/docs/ref/rst/directives.html#class you may end up with <div class="myClass"> <ul class="simple"> <li><a class="reference" href="http://x">link1</a></li> <li><a class="reference" href="http://x">link2</a></li> <li><a class="reference" href="http://x">link3</a></li> </ul> </div> but that should work, css selectors are flexible enough. Cheers -Terry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en -~----------~----~----~----~------~----~------~--~---
