Fixes a couple of issues around conversion of DocBook procedures. In particular, the code was failing to decrement the list_depth at the end of a procedure, which was messing up the indentation of all subsequent lists. Also, the logic of @continuation in the visit_listitem method needed to take account of procedures properly. Finally, I added an rspec test to validate these fixes for procedure.
Fixes a couple of issues around conversion of DocBook procedures. In particular, the code was failing to decrement the
list_depth
at the end of aprocedure
, which was messing up the indentation of all subsequent lists. Also, the logic of@continuation
in thevisit_listitem
method needed to take account of procedures properly. Finally, I added an rspec test to validate these fixes forprocedure
.