Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
fc4161689b
commit
44fe00f0a4
1 changed files with 65 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
## Markdown
|
||||
|
||||
The VS Code Python cell have [markdown](https://www.markdownguide.org/basic-syntax/)!
|
||||
|
||||
## Equations
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# $A(t) = \int_0^t f(x) dt$
|
||||
|
@ -9,4 +13,65 @@
|
|||
|
||||
![image0](image0.png)
|
||||
|
||||
## Heading level
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# # Heading level 1
|
||||
# ## Heading level 2
|
||||
# ### Heading level 3
|
||||
# #### Heading level 4
|
||||
# ##### Heading level 5
|
||||
# ###### Heading level 6
|
||||
```
|
||||
|
||||
![image1](image1.png)
|
||||
|
||||
## Italic and Bold
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# *italic*
|
||||
# **bold**
|
||||
# ***both***
|
||||
```
|
||||
|
||||
![image2](image2.png)
|
||||
|
||||
## List with numbers
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# 1. A
|
||||
# 2. B
|
||||
# 3. C
|
||||
# 1. C1
|
||||
# 2. C2
|
||||
# 4. D
|
||||
```
|
||||
|
||||
![image3](image3.png)
|
||||
|
||||
## List without numbers
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# * A
|
||||
# * B
|
||||
# * C
|
||||
# * C1
|
||||
# * C2
|
||||
# * D
|
||||
```
|
||||
|
||||
![image4](image4.png)
|
||||
|
||||
## Quotes
|
||||
|
||||
```python
|
||||
# %% [markdown]
|
||||
# > Quote level 1
|
||||
# > > Quote level 2
|
||||
```
|
||||
|
||||
![image5](image5.png)
|
||||
|
|
Loading…
Reference in a new issue