Chilled Geek's Blog

Always curious, always learning

Example markdown code

Posted at — May 1, 2018

Code blocks

```python

print(“hello world”)

```

Result

print("hello world")

Collapsable text/code

<details> <summary> Text shown, but expandable upon click </summary>

Expendable text is then shown when clicked

<p>

```python print(“including code”)

```

</details>

Result

Text shown, but expandable upon click Expendable text is then shown when clicked

print("including code")