This post shows you how to add inline code or code blocks using Markdown.
`inline code`

inline-code

```javascript
variable = "javascript code";
alert(variable);
```
variable = "javascript code";
alert(variable);
```python
variable = "python code"
print(variable)
```
variable = "python code"
print(variable)
```
code without a language
```
code without a language