Formatting

This commit is contained in:
sunqingyao 2017-09-07 16:52:34 +08:00 committed by GitHub
parent 66d9aaa705
commit c2d42a5e52
1 changed files with 26 additions and 26 deletions

52
README.md vendored
View File

@ -108,32 +108,32 @@ So, here ya go...
All the examples are structured like below:
### Some fancy Title
```py
# Setting up the code.
# Preparation for the magic...
```
**Output (Python version):**
```py
>>> triggering_statement
Probably unexpected output
```
(Optional): One line describing the unexpected output.
#### 💡 Explanation:
* Brief explanation of what's happening and why is it happening.
```py
Setting up examples for clarification (if necessary)
```
**Output:**
```py
>>> trigger # some example that makes it easy to unveil the magic
# some justified output
```
> ### Some fancy Title
>
> ```py
> # Setting up the code.
> # Preparation for the magic...
> ```
>
> **Output (Python version):**
> ```py
> >>> triggering_statement
> Probably unexpected output
> ```
> (Optional): One line describing the unexpected output.
>
>
> #### 💡 Explanation:
>
> * Brief explanation of what's happening and why is it happening.
> ```py
> Setting up examples for clarification (if necessary)
> ```
> **Output:**
> ```py
> >>> trigger # some example that makes it easy to unveil the magic
> # some justified output
> ```
# Usage