0% found this document useful (0 votes)
290 views

Jupyter Notebook Markdown Cheat Sheet

This document provides a cheatsheet for using Markdown in Jupyter Notebooks. It outlines various Markdown syntax for formatting text including headings, italics, bold, strikethrough, lists, code blocks, images, links, tables, math equations, tasks lists, line breaks, and more. The cheatsheet acts as a reference for Markdown syntax in Jupyter Notebooks.

Uploaded by

dave
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
290 views

Jupyter Notebook Markdown Cheat Sheet

This document provides a cheatsheet for using Markdown in Jupyter Notebooks. It outlines various Markdown syntax for formatting text including headings, italics, bold, strikethrough, lists, code blocks, images, links, tables, math equations, tasks lists, line breaks, and more. The cheatsheet acts as a reference for Markdown syntax in Jupyter Notebooks.

Uploaded by

dave
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

​ Jupyter Notebook Markdown Cheatsheet​ ​ From ​SqlBak.

com​ with 💙
<a id="anchor"></a>
#⌴Header 1 [Go to anchor](#anchor)
Header 1 #⌴Top Header
Go to anchor
Header 1
======== [Go to header](#Top-Header)

##⌴Header 2 https://sqlbak.com
Header 2
Header 2 [Link](https://sqlbak.com
-------- "optional title") Link
Click [here][id]
###⌴Header 3 Header 3 [id]:https://sqlbak.com

####⌴Header 4 Header 4 > blockquote text


blockquote text
#####⌴Header 5 Header 5
```python
*italics* italics print('hello');
_italics_ ``` print​(​'hello'​);
\*literal asterisks\* *literal asterisks* `inline_code();`

**bold** bold |Left |Center|Right|


__bold__ |:-----|:----:|----:|
|1 |A |C | Left Center Right
~~strikethrough~~ strikethrough |2 |B |D |
1 A C
1.⌴First item 1. First item
2. Second item 2 B D
2.⌴Second item
⌴1.⌴Subitem A. Subitem

*⌴Item 1 ● Item 1 ![alt text](logo.png "Title")


⌴Indent Indent
-⌴Item 2 ● Item 2 ![][id]
⌴+⌴Item 3 ■ Item 3 [id]:logo.png "Title"

- [x] Done ● ☑ Done $$\sqrt{k}$$ √k


- [ ] To do ● ▯To do Inline: $\sqrt{k}$

A A Line [![Img Alt


Line⌴⌴
Break
Break Text](http://img.youtube.com/vi/
aZCXOw707nc​/0.jpg)](https://yout
u.be/​aZCXOw707nc​ "Video Title")
--- ___________________________
* * * _

You might also like