Skip to content

Latest commit

 

History

History
133 lines (91 loc) · 2.48 KB

File metadata and controls

133 lines (91 loc) · 2.48 KB

Markdown Language

Markdown is a lightweight markup language with plain-text-formatting syntax, created in 2004 by John Gruber with Aaron Swartz. Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor. Source: Wikipedia

Title level 1

Title level 2

Title level 3

Title level 4

Title level 5
Title level 6

bold text bold text (double asterisks or double underscores)

italic italic (one asterisk or one underscore)

Strikethrough

bold & italic

text between double lines

Horizontal Rules

(***) or (___)


Unordered lists

(use asterisks, pluses, and hyphens - tab for subitens)

  • 1
    • 1.1
    • 1.2
  • 2
    • 2.1
    • 2.2
  • 1
    • 1.1
    • 1.2
  • 2
    • 2.1
    • 2.2
  • 1
    • 1.1
  • 2
    • 2.1
  • 3
  • 4
  • 5

Ordered lists using numbers

  1. Iten 1
  2. Iten 2
    1. Iten 2.1
  3. Iten 3
    1. Iten 3.1
    2. Iten 3.2

Task lists

  • Study Github
  • Create a repository for Git & Github documentation
  • Code in Java for 4 hours
  • Call mum
  • Run for 30 min
  • Practice yoga for 1 hour
  • Bake a cake

Inserting a image

Suported files: gif, jpeg, jpg, png, docx, gz, log, pdf, pptx, txt, xlsx or zip.

Description here

Create links:

  • same to images, except for the !exclamation mark

Link to my GitHub

Tables

Name Meal Order
Rose quiche 5
Mary salad 2

Quotes or citations

Introducing my quote:

Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...

Code blocks

This is a code block

To add syntax highlighting to a code block, add the name of the language immediately after the backticks:

var oldUnload = window.onbeforeunload;
window.onbeforeunload = function() {
    saveCoverage();
    if (oldUnload) {
        return oldUnload.apply(this, arguments);
    }
};

Insert emojis

  • colon + shortcode + colon

🖖 😊 🧑‍💻

You will find all emoji´s shortcodes here. Thanks @ikatyang! :smiley:

To tag someone in GitHub:

  • just use @

Exemple: @sarahdialmeida