VS Code Markdown: Difference between revisions

From Master of Neuroscience Wiki
Created page with " = Markdown = == The goal == The VS Code Python cell have [https://www.markdownguide.org/basic-syntax/ markdown]! Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Equations == <syntaxhighlight lang="python"># %% [markdown] # $A(t) = \int_0^t f(x) dt$</syntaxhighlight><div class="figure"> image0 </div> == Heading level == <syntaxhighlight lang="python"># %% [markdown] # # Heading level 1 # ## Heading level 2 # ### Heading level 3..."
 
No edit summary
 
Line 1: Line 1:


= Markdown =
== The goal ==
The VS Code Python cell have [https://www.markdownguide.org/basic-syntax/ markdown]!
The VS Code Python cell have [https://www.markdownguide.org/basic-syntax/ markdown]!



Latest revision as of 15:43, 17 October 2025

The VS Code Python cell have markdown!

Questions to David Rotermund

Equations

# %% [markdown]
# $A(t) = \int_0^t f(x) dt$

image0

Heading level

# %% [markdown]
# # Heading level 1
# ## Heading level 2
# ### Heading level 3
# #### Heading level 4
# ##### Heading level 5
# ###### Heading level 6

Italic and Bold

# %% [markdown]
# *italic*
# **bold**
# ***both***

List with numbers

# %% [markdown]
# 1. A
# 2. B
# 3. C
#       1. C1
#       2. C2
# 4. D

List without numbers

# %% [markdown]
# * A
# * B
# * C
#   * C1
#   * C2
# * D

Quotes

# %% [markdown]
# > Quote level 1
# > > Quote level 2