I am trying to convert doc-book xml that contains bibliography tags like:
      <bibliography>
         <title>Bibliography</title>
         <biblioentry>
            <abbrev>A1</abbrev>
            <title>Test doc A1</title>
         </biblioentry>
         <bibliomixed>
            <abbrev>A2</abbrev>
            <title>Test doc A2</title>
         </bibliomixed>
      </bibliography>
by running the command (from Powershell on a WIndows 10 PC)
  > pandoc.exe -f docbook -t markdown  -s 'simple.xml' -o simple.md
Note, the above cutout tested both using biblioentry and bibliomixed tags with no impact.

The output file lacks the title element where it looks like:
# Bibliography

A1

A2

whereas my expectations would have been something like this in simplest form:
# Bibliography

A1:Test doc A1

A2:Test doc A2

and an even better markdown output would have created a table like:
# Bibliography

|abbrev | title |
| --- | --- |
|A1|Test doc A1|
|A2|Test doc A2|

Any thoughts?

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/07c131fd-6189-473d-af2f-b74c0d0a47fen%40googlegroups.com.