Markdown is a simple formatting syntax for authoring web pages. It has a lot of benefits including version control and publishing to web browsers.
x <- c(3, 4, 6, 7)
y <- c(5, 6, 2, 1)
plot(x, y)
plot(x, y, xlab = "Independent variable", ylab = "Dependent variable", main = "This is my first figure")