When I do this, I get a docx where my markdown blockquotes (>) have not been properly converted, but with citation conversion working:
pandoc --filter pandoc-citeproc --bibliography ref/my-refs.bib in.md -o out.docx -f markdown
When I do this, the blockquotes work, but citations are not converted:
pandoc --filter pandoc-citeproc --bibliography ref/my-refs.bib in.md -o out.docx -f markdown_strict
The only difference between the two is markdown
vs markdown_strict
How can I get blockquotes + citations to work?