docx Writers 是否有类似 Rawblock 的功能?
Is there a Rawblock-like feature for docx Writers?
当我从 Markdown 转换为 LaTeX 时,我可以使用 python 过滤器将图像或 RawBlocks 替换为特殊的 LaTeX 代码。对于 docx 输出是否有类似的方法?
事实上,我想使用 python-docx 来生成 tables,它比 pandoc 可以处理的更复杂。我可以提取与 table 相关的 xml,我想使用过滤器将其插入到文档中。
是的,可以看出in the pandoc source code,格式应该是:
RawBlock (Format "openxml") "<customXML></customXML>"
或
RawInline (Format "openxml") "<customXML></customXML>"
当我从 Markdown 转换为 LaTeX 时,我可以使用 python 过滤器将图像或 RawBlocks 替换为特殊的 LaTeX 代码。对于 docx 输出是否有类似的方法?
事实上,我想使用 python-docx 来生成 tables,它比 pandoc 可以处理的更复杂。我可以提取与 table 相关的 xml,我想使用过滤器将其插入到文档中。
是的,可以看出in the pandoc source code,格式应该是:
RawBlock (Format "openxml") "<customXML></customXML>"
或
RawInline (Format "openxml") "<customXML></customXML>"