# Code Blocks ## Indent Code Block This line won't *have any markdown* formatting applied. I can even write HTML and it will show up as text. This is great for showing program source code, or HTML or even Markdown. this won't show up as HTML but exactly as you see it in this text file. Within a paragraph, you can use backquotes to do the same thing. `This won't be *italic* or **bold** at all.` ## Fence Code Block ```cpp #include int main(int argc, const char* argv[]) { std::cout << "C++ code block test" << std::endl; return 0; } ``` ``` This is a code block without language identifier. ```