Hello,
I went ahead and upgraded parts of the toolchain since the pandoc version there was too old (all the way from 2.7.3 to 2.19.2). After that, the conversion results from docbook to docx were different (granted, I am aware it's a huge version change). Tracing this, I found one tangible example that seems to occur in the docbook reader: A <note> element was previously put into a blockquote pandoc object, now it is a div with an identifying class.

I am trawling the changelogs for the releases between those two, but would like to ask the community if you recognize the change offhand and know of an extension or parameter that lets me revert to the old behaviour while I identify all those changes and put together some Lua to address it?

docbook:
<note><para>Here is a note without a title</para></note>

Pandoc (-t native) 2.7.3:
BlockQuote
 [Para [Strong [Str "Note"]]
 ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "note",Space,Str "without",Space,Str "a",Space,Str "title"]]


2.19.2:
Div
    ( "" , [ "note" ] , [] )
    [ Para [ Str "Here", Space, Str "is", Space, Str "a", Space, Str "note", Space, Str "without", Space
        , Str "a", Space, Str "title"
        ]
    ]


Regards,
Erik Rask
--
Hurrying will get you nowhere faster.

--
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/CAMXDC9%2Bw_75mDebPvJ-RyuUyJkd7x0QTbqUe7ZT1mwuWj_wZqA%40mail.gmail.com.