pandoc filter node:适用于Node.js的Pandoc过滤 源码
关于 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
文件列表
pandoc-filter-node-master.zip
(预估有个45文件)
pandoc-filter-node-master
.travis.yml
46B
package.json
867B
test
test.js
6KB
spec
newcaps
input.json
316B
filter.js
281B
source.md
13B
暂无评论