Markdown Cheat Sheet Jupyter

broken image


Markdown is a wonderfully simple approach to creating web pages, writtenby John Gruber of DaringFireball. You get on with the business of writing (without any fancycode) and Markdown takes care of producing clean, web standardscompliant HTML.

The Daring Fireball site provides full documentation forMarkdown, but the following examplesshould get you started.

Section Headings

The Jupyter Notebook uses MathJax to render LaTeX inside HTML / Markdown. Just put your LaTeX math inside $ $. Or enter in display math mode by writing between $$ $$. Output Result: Colab Notebook. Markdown Cheat Sheet Markdown is a wonderfully simple approach to creating web pages, written by John Gruber of Daring Fireball. You get on with the business of writing (without any fancy code) and Markdown takes care of producing clean, web standards compliant HTML. Description: Jupyter notebook Homework 1/HW 1.2 - Markdown and LaTeX Cheatsheet.ipynb Compute Environment: Ubuntu 18.04 (Deprecated) Unless otherwise specified, each part of this problem is worth 0.1 points, for a total of 2.75 points. For conceptual Markdown files UID can be defined by adding a uid metadata in YAML header: - uid: uidofthefile - This is a conceptual topic with `uid` specified. For reference topics, UIDs are auto generated from source code and can be found in generated YAML files.

You can define headings of different levels when creating a web page.The most important heading (which typically only occurs once on eachpage -- at the top) is heading 1. A level 1 heading can be created withMarkdown by typing a single '#' character at the start of a line. Theheading at the top of this page was defined like this:

To create a secondary heading (such as the one for this section) youjust use two '#' characters, like so:

You can use up to six '#' characters to create a level 6 heading, butyou will probably find that you don't need to nest your headings quiteso deeply!

Paragraphs

Paragraphs are very easy; separate them with a blank line. You can writeyour paragraph on one long line, or you can wrap the lines yourself ifyou prefer.

This section was marked up like so:

Jupyter Markdown Cell Cheat Sheet

Bold and Italics

It's very easy to add emphasis with bold and italics:

You can also use underscores if you prefer:

Links

Sheet

Create simple links by wrapping square brackets around the link text andround brackets around the URL:

Markdown Cheat Sheet Jupyter Python

If you want to give your readers an extra about the link that they'reabout to follow you can set a link title:

Titles usually appear as a tooltip when you hover over the link, andhelp search engines work out what a page is about.

Bulleted Lists

Start each line with hyphen or an asterisk, followed by a space. Listitems can be nested. This text:

...produces this list:

  • Bullet 1
  • Bullet 2
    • Bullet 2a
    • Bullet 2b
  • Bullet 3

Numbered Lists

Markdown Cheat Sheet Jupyter Free

Start each line with number and a period, then a space. This text…

...produces this list:

Markdown Cheat Sheet Jupyter Notebook

  1. Baked potato
  2. Baked beans
  3. Pepper

Quotes

If you need to cite a paragraph of somebody else's work you really oughtto attribute it to them properly by using HTML's

tag.You can produce it with Markdown by adding a single '>' character atthe beginning of the line.

This text:

Markdown Cheat Sheet Jupyter Online

...produces:

Markdown Cheat Sheet Jupyter English

One thing was certain, that the white kitten had had nothingto do with it -- it was the black kitten's fault entirely. Forthe white kitten had been having its face washed by the old cat,for the last quarter of an hour (and bearing it pretty well,considering) so you see that it couldn't have had any hand inthe mischief. -- Lewis Carroll, Through the LookingGlass





broken image