Markdown Renderer for Confluence supports syntax-highlighted code blocks for multiple programming languages, making your technical documentation more readable and professional.
Create a code block using triple backticks:
```python
def hello_world():
print("Hello, World!")
```
Specify the language after the opening backticks for syntax highlighting:
```javascript
function calculateSum(a, b) {
return a + b;
}
```
Use single backticks for inline code:
Use the `print()` function to output text