Playing with Markdown for code. It won't keep the line break in the code. Tried both 4 space indent and the three backspace.
using StringVec = td::vector<std::string>;
std::expected<StringVec, ErrorCode>
using StringVec = td::vector<std::string>;
std::expected<StringVec, ErrorCode>
```
using StringVec = td::vector<std::string>;
std::expected<StringVec, ErrorCode>
using StringVec = td::vector<std::string>;
std::expected<StringVec, ErrorCode>
```
@freemo
```
using StringVec = std::vector<std::string>;
std::expected<StringVec, ErrorCode> x;
std::expected<StringVec, ErrorCode> f();
```
I don't know how to see the "Markdown" source you tried. Mastodon's "Markdown" is pretty far from being Markdown but I have been able to get line breaks in code blocks.
I tried it both with backticks and four spaces which are standard Markdown. Here is it without Markdown turned on:
```
using StringVec = std::vector<std::string>;
std::expected<StringVec, ErrorCode> ;
```
using StringVec = std::vector<std::string>;
std::expected<StringVec, ErrorCode> f();
@rmerriam yea for code formatting ive noticed some similar issues... not sure the cause just yet.