You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.