My computer is running Debian 10 and I installed markdown (apt install markdown). I am using bashblog (commit 1715ee1) and in genreal works well using markdown. However, if I insert the following code block
```
int compute_sum(const vector<int> &vec)
for (int i=0; i<vec.size(); ++i)
sum += vec[i];
return sum;
```
when posting the code block is displayed a single line.