Klipse
Gitbook 插件:集成 Klipse
(online code evaluator)
可以用来在线编辑代码:支持的代码有 clojure, javascript, python, ruby, scheme 和 php
[!TIP|style:flat|iconVisibility:hidden|labelVisibility:hidden] npm install gitbook-plugin-klipse
book.json
{
"plugins": ["klipse"]
}
https://github.com/brian-dawn/gitbook-plugin-klipse
插件使用到了 google 的库,开启的时候,明显网页会慢一些。如果不会DIY,最好慎用。
klipse
目前支持下面的语言:
javascript: 执行完以后format打印结果
clojure[script]: evaluation is done with Self-Hosted Clojurescript
ruby: evaluation is done with Opal
C++: evaluation is done with JSCPP
python: evaluation is done with Skulpt
scheme: evaluation is done with BiwasScheme
PHP: evaluation is done with Uniter
使用示例:
js 使用
JS脚本
[1,2,3].map(function(x) { return x + 1;})
修改代码中的数字,可以直接显示答案:
[1,2,3].map(function(x) { return x + 1;})
python 使用
print [x + 1 for x in range(10)]
修改代码中的数字,可以直接显示答案:
print [x + 1 for x in range(10)]
PHP 使用
PHP脚本
$var = ["a" => 1];
var_dump($var);
修改代码中的数字,可以直接显示答案:
$var = ["a" => 1];
var_dump($var);