Skip to content

Latest commit

 

History

History
118 lines (76 loc) · 2.38 KB

markdown_for_GitChefs.md

File metadata and controls

118 lines (76 loc) · 2.38 KB

Markdown

Markdown for GitChefs

Markdown is a lightweight markup language with plain text formatting syntax. It is designed so that it can be converted to HTML and many other formats using a tool by the same name. 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. As the initial description of Markdown contained ambiguities and unanswered questions, many implementations and extensions of Markdown appeared over the years to answer these issues.

source: wikipedia

You will find here the bases of Markdown you will need to write your best recipe

A text-file containing Markdown should have the extension .md to be read properly

Let's practice here


I. Sections and subsections:

1.Look what can i do !

1.1 Wow this is very simple !

1.1.1 Look !

1.1.1.1 I think i got it..

1.1.1.1.1 Are you sure ?
1.1.1.1.1.1 Yes...
# 1.Look what can i do !
## 1.1 Wow this is very simple !
### 1.1.1 Look !
#### 1.1.1.1 I think i got it..
##### 1.1.1.1.1 Are you sure ?
###### 1.1.1.1.1.1 Yes...

II. Text format

This is bold, italic, striketrough, bold and italic

This is **bold**, *italic*, ~~striketrough~~, _**bold and italic**_

III. Include Image or Link

III.I Show an image

pesto.jpg

![pesto.jpg](imgs/pesto.jpg)

note: you can also show an image with the URL

![pesto.jpg](http://www.foodista.com/sites/default/files/pesto-1556974%20%281%29.jpg)

III.II How to write a link to another web-page

You will find the recipe of the famous pesto alla genovese here

You will find the recipe of the famous pesto alla genovese [here](http://www.foodista.com/recipe/F52CN46C/pesto-genovese)

IV. Items

What do i need:

  • These
  • This
  • That
  • This
  • That
What do i need:
 - These
  - This
  - That
 - This
 - That

V. Quotes, Maths and other things

V.I Quoting

Rémi once said:

My ratatouille is the best in Paris

Rémi once said:
> My ratatouille is the best in Paris