If you are new to Jupyter Notebook, one of the most useful things you should learn about is the Markdown apart from learning Python. It is a lightweight markup language that is supported by Jupyter Notebook for formatting text in cells.
Using the Markdown option for a cell, you can generate formatted text, including headings, lists, tables, links, images, and more.
This really helps you to add details about the cells and helps to document your Notebook in a rich way.
Getting Started with Markdown in Jupyter Notebook
The first thing you need to do is, create a new cell, and from the dropdown as you see in the below gif demo, select "Markdown"
Now whatever you type in the cell will be considered as a markup language text.
Adding headers H1 - H6
Just like we have the header tags in HTML, we have the options of headers from h1 (biggest text header) to h6 (smallest text header)
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
##### Heading 6
Just add # (hash) symbol before you start writing the header. The number of # you add will result in the respective header.
Bold/Italic
This will look **bold
This will look *italic
<h1>Heading 1<h1>
<hr>
This is <strongbold</strong>
Facing issues? Have Questions? Post them here! I am happy to answer!
- Python List of Lists with Examples
- Fix: ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none) ERROR: No matching distribution found for tkinter
- How to Convert Python Notebook .ipynb (JSON) to Executable .py Module
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Pandas Merge Indicator (Left, Right and Both) Example
- Fix: EOFError Exception in Python
- How to URL Decode a Query String in Python
- How to take user input from the console in a Python program
- Compare two lists in Python and return matches
- How to change the Python Default version
- Fix: KeyError: exception in Python
- How to get the Execution Time of A Python Program
- Fix: ModuleNotFoundError: No module named boto3 [Python]
- How to get unique values from a list in Python
- How to pip install Python Modules in VSCode
- Python: Fix - TypeError: NoneType object is not iterable
- How to delete a file using Python code example
- How to create a dictionary comprehension in Python
- Python: Get just the filename without extension using Path
- How to comment out a block of code in Python
- How to add two float numbers in Python
- Python: How to POST Json Data with HTTP Request
- Get MD5 Hash as Checksum of a String in Python
- Python - Convert float to String
- How to Parse XML String in Python
- [IRCTC] Indian railways official eRail API 1.1 for developers to get train info - HowTos
- Python: Convert Binary String to Normal String - Python
- Duplicate id @+id/textView1, already defined earlier in this layout Android Error - Android
- Find Covid-19 Vaccine centers on macOS or iOS Maps App - News
- How to Add Maven Central Repository in pom.xml - HowTos
- Not receiving email notification alert in SharePoint Online workflow - Power Automate, FLOW - SharePoint
- How to show SSL Certificate details using cURL Command - cURL
- PowerShell Concatenate String Examples - Powershell