While testing a new article to see how the markup goes, I encountered a url containing parentheses, the results were buggy:
And to my request, I'd like to ask for an option to continue code blocks, so the writer will have an option to insert commentary in the middle of a block.
An example:
| ```C
1. some_part_of_a_code_section();
2. // stuff happens here
```
|
As we saw, stuff happened there, but to solve that kind of stuff, we'll need some other stuff:
| ```C,continued
3. continuation_of_the_previous_stuff();
4. // a great solution, cheers
```
|