Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 435 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 435 Bytes

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 %}