Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-13 01:06:20 +01:00 committed by GitHub
parent fc4161689b
commit 44fe00f0a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)