import numpy as np
import matplotlib.pyplot as plt
t = np.linspace(0,10)
plt.plot(t,t)
plt.show()
Quarto is a an editing platform centered on Markdown.
You can write down multiple kinds of interactive documents in Quarto, including websites that mix code, text, equations etc. The individual notebook can be jupyter notebooks or dedicated markdown documents.
Combined with combined repositories such as GitHub, Quarto allows you to create a static website to collect your progress is very easily.
For more information on Quarto, see https://quarto.org
quarto installation, e.g. from https://quarto.orggitSettingsPages on the left sidebarmain and select folder docsquarto renderimport numpy as np
import matplotlib.pyplot as plt
t = np.linspace(0,10)
plt.plot(t,t)
plt.show()