Code Highlight
Examples
Inline code print(x + "a")
example
# Bash example
function show_help() {
echo "Usage:
script.sh <param>
param - Parameter
"
}
show_help "${HOST}"
# Python example
def sum(a, b):
return a + b
def main():
result = sum(1, 2)
print("result: {0}".format(result))
main()
Usage
Inline code `print(x + "a")` example
```python
# Python example
def sum(a, b):
return a + b
def main():
result = sum(1, 2)
print("result: {0}".format(result))
main()
```