Tagged Questions
1
vote
1answer
41 views
How can I write nested code on a nested list with markdown? [duplicate]
I need to write a nested code block on a sub element of a list.
My list look like
1. element 1
1. element 2
1. element 3, this has subelements
1. sub element 1
1. sub element 2 this one ...
0
votes
1answer
163 views
How to escape the angled brackets (“<”, “>”) in a code block?
Writing a question including a C code in a <pre><code> block, I found out that in my #include lines the header names are not displayed when using the standard <name.h> convention. ...
3
votes
2answers
102 views
Post `\` or `\\` in a comment
I wanted to add to an answer that \ should be escaped but I didn't manage to put this in a comment.
When I did:
`\`
then it didn't display the \, and:
`\\`
causes it to only display one \ ...