Markdown for Jupyter notebooks cheatsheet
Here’s how to format Markdown cells in Jupyter notebooks in the IBM Data Science Experience. Headings : Use #s followed by a blank space for notebook titles and section headings: # title ## major headings ### subheadings #### 4th level subheadings Emphasis : Use this code: Bold : __string__ or **string** Italic : _string_ or *string* Mathematical symbols : Use this code: $ mathematical symbols $ Monospace font : Surround text with a back single quotation mark. (`) Use monospace for file path and file names and for text users enter or message text users see. Line breaks : Sometimes markdown doesn’t make line breaks when you want them. Use this code for a manual line break: <br> . Colors : Use this code: <font color=blue|red|green|pink|yellow>Text</font> Not all markdown code works within a font tag, so review your colored text carefully! Indenting : Use a greater than sign ( > ) and then a spac...