diff --git a/Markdown_Guide.ipynb b/Markdown_Guide.ipynb
new file mode 100644
index 0000000..a473c28
--- /dev/null
+++ b/Markdown_Guide.ipynb
@@ -0,0 +1,220 @@
+{
+ "nbformat": 4,
+ "nbformat_minor": 0,
+ "metadata": {
+ "colab": {
+ "name": "Markdown Guide",
+ "provenance": [],
+ "collapsed_sections": [],
+ "toc_visible": true,
+ "include_colab_link": true
+ },
+ "kernelspec": {
+ "display_name": "Python 3",
+ "name": "python3"
+ }
+ },
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "view-in-github",
+ "colab_type": "text"
+ },
+ "source": [
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "uTnBkRyvGvhW"
+ },
+ "source": [
+ "Formatting text in Colaboratory: A guide to Colaboratory markdown\n",
+ "==="
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "70pYkR9LiOV0"
+ },
+ "source": [
+ "## What is markdown?\n",
+ "\n",
+ "Colaboratory has two types of cells: text and code. The text cells are formatted using a simple markup language called markdown, based on [the original](https://daringfireball.net/projects/markdown/syntax).\n",
+ "\n",
+ "## Quick reference\n",
+ "\n",
+ "To see the markdown source, double-click a text cell, showing both the markdown source (above) and the rendered version (below). Above the markdown source there is a toolbar to assist editing.\n",
+ "\n",
+ "Headers are created using \\#. Use multiple \\#\\#\\# for less emphasis. For example:\n",
+ ">\\# This is equivalent to an <h1> tag\n",
+ "\n",
+ ">\\##### This is equivalent to an <h5> tag\n",
+ "\n",
+ "To make text **bold** surround it with \\*\\*two asterisks\\*\\*. To make text *italic* use a \\*single asterisk\\* or \\_underscore\\_. \\\n",
+ "_**Bold** inside italics_ and **vice-_versa_** also work. ~~Strikethrough~~ uses \\~\\~two tildes\\~\\~ while `monospace` (such as code) uses \\`backtick\\`.\n",
+ "\n",
+ "Blocks are indented with \\>, and multiple levels of indentation are indicated by repetition: \\>\\>\\> indents three levels.\n",
+ "\n",
+ "Ordered lists are created by typing any number followed by a period at the beginning of a line. Unordered lists are \\* or - at the beginning of a line. Lists can be nested by indenting using two spaces for each level of nesting.\n",
+ "\n",
+ "[Links](https://research.google.com/colaboratory) are created with \\[brackets around the linked text\\](and-parentheses-around-the-url.html). Naked URLs, like https://google.com, will automatically be linkified.\n",
+ "Another way to create links is using references, which look like [brackets around the linked text][an-arbitrary-reference-id] and then, later anywhere in the cell on its own line, \\[an-arbitrary-reference-id]: followed-by-a-URL.html\n",
+ "\n",
+ "A '!' character in front of a link turns it into an inline image link: !\\[Alt text]\\(link-to-an-image.png).\n",
+ "\n",
+ "$\\LaTeX$ equations are surrounded by `$`. For example, `$y = 0.1 x$` renders as the following inline equation: $y = 0.1 x$. Double the `$` to set the contents off on its own centered line.\n",
+ "\n",
+ "Horizontal rules are created with three or more hyphens, underscores, or asterisks (\\-\\-\\-, \\_\\_\\_, or \\*\\*\\*) on their own line.\n",
+ "\n",
+ "Tables are created using \\-\\-\\- for the boundary between the column header and columns and \\| between the columns.\n",
+ "\n",
+ "Please see also [GitHub's documentation](https://help.github.com/articles/basic-writing-and-formatting-syntax/) for a similar (but not identical) version of markdown."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "eYaIiIaJOPqi"
+ },
+ "source": [
+ "## Examples"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "tPqPXAKKkzaM"
+ },
+ "source": [
+ "Examples of markdown text with tags repeated, escaped the second time, to clarify their function:\n",
+ "\n",
+ "##### \\#\\#\\#\\#\\#This text is treated as an