0.0.4 • Published 1 year ago
hexo-coliru v0.0.4
hexo-coliru
A hexo plugin to run code via coliru.
Installation
npm install hexo-coliru
Usage
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 %}