This is the mail archive of the docbook@lists.oasis-open.org mailing list for the DocBook project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Suppressing LOT output with Modular DocBook stylesheets


/ kent@darwin.eeb.uconn.edu was heard to say:
| For a project I am currently working on I need to suppress output of
| all LOT elements. I've tried
| 
| (define ($generate-book-lot-list$)
|   ;; Don't generate any lists
|   (list (empty-node-list)))

You want:

(define ($generate-book-lot-list$)
  '())

You want an empty list, not a list containing one empty node list :-)

                                        Cheers,
                                          norm

-- 
Norman Walsh <ndw@nwalsh.com>      | Life always comes to a bad
http://www.oasis-open.org/docbook/ | end.--Marcel Aym\'e
Member, DocBook Editorial Board    | 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]