Source: kamesh-mishra20.medium.com

Format Text In Jupyter Notebook With Markdown
When you format text using Markdown in a document, it is similar to using the format tools (e.g. bold, heading 1, heading 2) in a word processing tool like Microsoft Word or Google Docs. However, instead of using buttons to apply formatting, you use syntax such as **this syntax bolds text in markdown** or # Here is a heading.

You can use Markdown to format text in many different tools including GitHub.com, R using RMarkdown, and Jupyter Notebook, which you will learn more about this page. A great benefit of Jupyter Notebook is that it allows you to combine both code (e.g. Python) and Markdown in one document, so that you can easily document your workflows.

For example, the following syntax: ![Markdown Logo is here.](https://www.fullstackpython.com/img/logos/markdown.png) will render as follows with an alt text of Markdown Logo is here.: You can also add images to a Markdown cell using relative paths to files in your directory structure using: ![alt text here](path-to-image-here)

Related Articles