| Well `this` is in ` code ` style.
    echo "This is code indented with spaces!";
	echo "This is code indented with a tab!";
        echo "This is code indented with 2 sets of spaces!";
		echo "This is code indented with 2 tabs!";
With backticks:
```
<
 >
```
With tildes:
~~~
<
 >
~~~
Tildes within backticks:
```
aaa
~~~
```
Backticks within tildes:
~~~
aaa
```
~~~
Longer backticks closing fence:
````
aaa
```
``````
Longer tildes closing fence:
~~~~
aaa
~~~
~~~~
Empty code lines:
```
  
```
```
```
Indented fences:
 ```
 aaa
aaa
```
  ```
aaa
  aaa
aaa
  ```
   ```
   aaa
    aaa
  aaa
   ```
Indented code block:
    ```
    aaa
    ```
Indented close fence:
```
aaa
  ```
   ```
aaa
  ```
Indented fence inside a code block:
```
aaa
    ```
```
Fences with internal spaces:
``` ```
aaa
~~~~~~
aaa
~~~ ~~
~~~~~~
Code fences interrupting paragraphs:
foo
```
bar
```
baz
foo
---
~~~
bar
~~~
# baz
Code fences with language name:
```ruby
def foo(x)
  return 3
end
```
~~~~    ruby startline=3 $%@#$
def foo(x)
  return 3
end
~~~~~~~
````;
````
Code fences with backticks in information strings:
``` aa ```
foo
Closing fences without information strings:
```
``` aaa
```
 |