Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用来自httpie的docverter呈现文档。所有示例都是针对 Curl 的。我试过了
http -f POST http://c.docverter.com/convert from=markdown to=html input_files@example.txt --output out.html
但是网站会报错
/convert 处的 TypeError 无法将 Symbol 转换为 Integer
你已经很接近了。您的http调用应如下所示:
http
http --form -f POST http://c.docverter.com/convert from=markdown to=html input_files[]@example.md --output out.html && open out.html
在调试时,我发现了一个错误的错字并发布了 v1.0.1 并将其安装在公共实例上。