From d10534eb259e80af6f0b7b6568bb6c7848e0eb7f Mon Sep 17 00:00:00 2001 From: Arnaud Legrand Date: Thu, 19 Jul 2018 18:23:46 +0200 Subject: [PATCH] Bummer! --- .../ressources/introduction_to_markdown.html | 138 +++++++++--------- .../ressources/introduction_to_markdown.org | 2 +- 2 files changed, 70 insertions(+), 70 deletions(-) diff --git a/module1/ressources/introduction_to_markdown.html b/module1/ressources/introduction_to_markdown.html index 3a369b8..d0e31e3 100644 --- a/module1/ressources/introduction_to_markdown.html +++ b/module1/ressources/introduction_to_markdown.html @@ -4,30 +4,30 @@

Table of Contents

@@ -37,13 +37,13 @@ Voici un aperçu rapide de la syntaxe Markdown repris d'une présentation de Github ainsi que de celles d'Archer Reilly.

-
-

Syntaxe

-
+
+

Syntaxe

+
-
-

Headers

-
+
+

Headers

+
 # This is an <h1> tag
 ## This is an <h2> tag
@@ -52,9 +52,9 @@ Voici un aperçu rapide de la syntaxe Markdown repris d'une
 
-
-

Emphasis

-
+
+

Emphasis

+
 *This text will be italic*
 _This will also be italic_
@@ -67,13 +67,13 @@ _You **can** combine them_
 
-
-

Lists

-
+
+

Lists

+
-
-

Unordered

-
+
+

Unordered

+
 * Item 1
 * Item 2
@@ -82,9 +82,9 @@ _You **can** combine them_
 
-
-

Ordered

-
+
+

Ordered

+
 1. Item 1
 1. Item 2
@@ -95,27 +95,27 @@ _You **can** combine them_
 
-
-

Images

-
+
+

Images

+
 ![GitHub Logo](/images/logo.png)
 Format: ![Alt Text](url)
 
-
-

Links

-
+
+

Links

+
 http://github.com - automatic!
 [GitHub](http://github.com)
 
-
-

Blockquotes

-
+
+

Blockquotes

+
 As Kanye West said:
 
@@ -124,9 +124,9 @@ As Kanye West said:
 
-
-

Inline code

-
+
+

Inline code

+
 I think you should use an
 `<addr>` element here instead.
@@ -134,9 +134,9 @@ I think you should use an
 
-