Markdown is a lightweight markup language with plain text formatting syntax. https://en.wikipedia.org/wiki/Markdown
If the words are enclosed with back ticks (`), it will treated as a code (command). In order to imbed several lines of code, Triple back tiks are used. Formmatting of markdown is not performed in the code or code blocks. For example **this is not emphasized**.
# Python Hello world program
print('Hello world')
Unordered list can be written with either -, + or *.
Ordered List can be written iwth 1. ... which is automatically renumbered so only 1. is enough.
HTML <dl> tag can be used as well
In order to display quated(copied) contents, > can be used.
John Gruber created the Markdown language in 2004 in collaboration with Aaron Swartz on the syntax,[3][4] with the goal of enabling people "to write using an easy-to-read, easy-to-write plain text format, and optionally convert it to structurally valid XHTML (or HTML)".[5]
(From wikipedia)
$\LaTeX$ (LaTex) mathematical rendering is supported in jupyter notebook.
There are several ways to do this
$ to imbed formula in the text line. $\sqrt{x^2+y^2}$ is a distance from (0,0) to (x,y)
In [ ]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
import math
x = np.linspace(0, math.pi*2, 100)
y = np.sin(x)
plt.plot(x, y)