Basics

Markdown Basics

  1. Headings

# This is heading 1

This is heading 1

## This is heading 2

This is heading 2

### Heading 3

This is heading 3

#### Heading 4

This is heading 4

##### Heading 5

This is heading 5

  1. Italics

* This is in italics.* This text is in italics.

_This is in italics._ This text is in italics.

  1. Bold

**This text is in bold.** ** This text is in bold.**

__This text is in bold.__ __ This text is in bold.__

  1. Highlight text

==This text is highlighted.== ==This text is highlighted==

  1. Lists

  • Item 1

  • Item 2

  • Item 3

  • Item 4

    • Item 1

    • Item 2

    • Item 3

    • Item 4

  1. Item 2

  2. Item 2

  3. Item 3

  4. Item 4

    1. Item 2

    2. Item 2

    3. Item 3

  5. Images

![Engelbart] -> Description of the image

(https://history-computer.com/ModernComputer/Basis/images/Engelbart.jpg) -> Link to the image

  1. Blockquotes

> Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.

Human beings face ever more complex and urgent problems, and their effectiveness in dealing with these problems is a matter that is critical to the stability and continued progress of society.

  1. Inline code

Text inside backticks will be formatted like code.

  1. Code Blocks

function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
  1. Tasks list

  1. Tables

Title 1 | Title 2 :--- | ---: Some text | Some text This text is justified to left | This text is justified to right

Title 1
Title 2

Some text

Some text

This text is justified to left

This text is justified to right

Text can be justified to left of right using :.

  1. Strikethrough

Any word wrapped with two tildes (like ~~this~~) will appear crossed out. Any word wrapped with two tildes (like this) will appear crossed out.

  1. Links

This is an [example link] (https://www.google.com)

  1. Refrencestyle links:

I am learning [markdown][1] . I am also learning [programming][2]. I think I love [informations technology][3].

I am learning [markdown][1] . I am also learning [programming][2]. I think I love [informations technology][3].

  1. Text colors using HTML tags

<font color='red'>Text</font> Text

  1. Center text with HTML tag

<center> This text is in center </center>

This text is in center

Last updated