关于 Python Node.js / TypeScript端口,用于使用进行过滤 安装 npm install -g pandoc-filter 例子 #!/usr/bin/env node // Pandoc filter to convert all text to uppercase var pandoc = require ( "pandoc-filter" ) ; var Str = pandoc . Str ; function action ( { t : type , c : value } , format , meta ) { if ( type === "Str" ) return Str ( value . toUpperCase ( ) ) ; } pandoc . stdio ( action ) ; 使用本机承诺进行异步 #!/usr/bin/env n