Hi, I decided to use Joplin to make my college's coursework, and it was a good choice until I had recursion classes, I miss a feature (or I found a bug).
I made this to put a Markdown code block inside this code block, but the output is:
(next post)
Are nested fenced code blocks a standard markdown feature?
What you have put there is what I would expect to render - you are basically setting one overall markdown code block which contains markdown code within it that would therefore display verbatim with markdown syntax highlighting.
Having trouble working out what you are trying to achieve here. You are trying to set a code block with Markdown highlighting within a code block with Markdown highlighting?
Why not just set the whole lot in one block? I have used the type "text" here.
Not quite nested, in that you cannot set a whole code block with different highlighting within it, but if you want to display a fenced code block starting with three back-ticks and show those back-ticks you can enclose it all within a fenced code block of four back-ticks.
Example:
````text
```
A fenced code block
```
````
Output:
```
A fenced code block
```
Code highlighting can only be set using the very first set of four back-ticks i.e. the "real" start of the fenced code block.
My question was more asking from the OP as as far as I'm aware nested codeblocks aren't a Markdown feature, I was assuming that somehow the OP had used such a feature before as I can't see a way that it would work.
You can also use 3 ~s to escape backticks which I find looks neater on the few occasions I've needed it.
Where are you generating this from? As far as I know it isn't standard markdown as it should be displaying all the characters within the first codeblock without formatting.