A hexo plugin to run code via coliru.
npm install hexo-coliru
A run button and a result text box will appear in your post via the following method.
{% coliru %}
```cpp
#include <iostream>
using namespace std;
int main(void) {
cout << "Hello!\n";
return 0;
}
```
{% endcoliru %}