6.14.9.16.1. Numbered Lists

Start python section to interscript/weavers/lout.py[27 /34 ] Next Prev First Last
   400: #line 815 "lout_weaver.ipk"
   401:     def begin_numbered_list(self, start=1, type='1'):
   402:         self._write("\n@NumberedList")
   403:         if start != 1:
   404:             self._write(" start{%d}" % start)
   405:         self._writeline()
   406:         return
   407: 
   408:     def end_numbered_list(self):
   409:         self._writeline("@EndList")
   410: 
   411:     def begin_numbered_list_item(self):
   412:         self._write("@LI{")
   413: 
   414:     def end_numbered_list_item(self):
   415:         self._writeline("}")
End python section to interscript/weavers/lout.py[27]

Here is a test list starting at 4.

  1. Test..
  2. Another item that should be 5.