asciidoctor / docbookrx

(An early version of) a DocBook to AsciiDoc converter written in Ruby.
MIT License
22 stars 49 forks source link

No visitor defined for <refentry>! Skipping. #24

Closed htakeda closed 11 months ago

htakeda commented 8 years ago

I performed below command. But it seems to be unaware refentry. I don't know why this error happened.

$ ./bin/docbookrx ./drbd9/drbd.conf.xml 
No visitor defined for <refentry>! Skipping.

drbd.conf.txt

mojavelinux commented 8 years ago

refentry is a node that docbookrx does not currently handle. refentry is typically used for a man page. AsciiDoc does have support for the man page structure, so this is something that docbookrx should be able to handle. We should start with a test case with both the DocBook and the expected AsciiDoc, then make the necessary changes to the code to get that test to pass.

mojavelinux commented 11 months ago

This would be covered by #23.