-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentation.html
179 lines (179 loc) · 6.96 KB
/
presentation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta name="author" content="Guimoz">
<title>Présentation Markdown</title>
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
div.sourceCode { overflow-x: auto; }
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
margin: 0; padding: 0; vertical-align: baseline; border: none; }
table.sourceCode { width: 100%; line-height: 100%; }
td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
td.sourceCode { padding-left: 5px; }
code > span.kw { color: #007020; font-weight: bold; } /* Keyword */
code > span.dt { color: #902000; } /* DataType */
code > span.dv { color: #40a070; } /* DecVal */
code > span.bn { color: #40a070; } /* BaseN */
code > span.fl { color: #40a070; } /* Float */
code > span.ch { color: #4070a0; } /* Char */
code > span.st { color: #4070a0; } /* String */
code > span.co { color: #60a0b0; font-style: italic; } /* Comment */
code > span.ot { color: #007020; } /* Other */
code > span.al { color: #ff0000; font-weight: bold; } /* Alert */
code > span.fu { color: #06287e; } /* Function */
code > span.er { color: #ff0000; font-weight: bold; } /* Error */
code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
code > span.cn { color: #880000; } /* Constant */
code > span.sc { color: #4070a0; } /* SpecialChar */
code > span.vs { color: #4070a0; } /* VerbatimString */
code > span.ss { color: #bb6688; } /* SpecialString */
code > span.im { } /* Import */
code > span.va { color: #19177c; } /* Variable */
code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
code > span.op { color: #666666; } /* Operator */
code > span.bu { } /* BuiltIn */
code > span.ex { } /* Extension */
code > span.pp { color: #bc7a00; } /* Preprocessor */
code > span.at { color: #7d9029; } /* Attribute */
code > span.do { color: #ba2121; font-style: italic; } /* Documentation */
code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
</style>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML-full" type="text/javascript"></script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<h1 class="title">Présentation Markdown</h1>
<p class="author">Guimoz</p>
<p class="date">27 Octobre 2017</p>
</header>
<h1 id="markdown">Markdown</h1>
<p>Un langage simple pour des notes efficaces</p>
<h1 id="pourquoi-markdown">Pourquoi Markdown ?</h1>
<ul>
<li>Simple</li>
<li>Rapide</li>
<li>Pas d'apprentissage</li>
</ul>
<h1 id="exemples">Exemples</h1>
<h1 id="texte">Texte</h1>
<pre><code>*single asterisks*
_single underscores_
**double asterisks**
__double underscores__</code></pre>
<p><em>single asterisks</em></p>
<p><em>single underscores</em></p>
<p><strong>double asterisks</strong></p>
<p><strong>double underscores</strong></p>
<h1 id="texte-v2">Texte v2</h1>
<pre><code>~~tilde~~
retour à ligne : une ligne vide</code></pre>
<p><del>tilde</del></p>
<h1 id="titres">Titres</h1>
<pre><code># Titre
## Sous-titre
###Sous-sous-titre</code></pre>
<p><small><code>#Titre</code> crée une nouvelle slide en mode présentation</small></p>
<h1 id="citation">Citation</h1>
<pre><code>> Citation
>
>> Citation2</code></pre>
<blockquote>
<p>Citation</p>
<blockquote>
<p>Citation2</p>
</blockquote>
</blockquote>
<h1 id="inclusion-de-code">Inclusion de Code</h1>
<pre><code>`one_line=True`</code></pre>
<pre><code>```python
def multiple_lignes():
pass
```</code></pre>
<p><code>one_line=True</code></p>
<div class="sourceCode"><pre class="sourceCode python"><code class="sourceCode python"><span class="kw">def</span> multiple_lines():
<span class="cf">pass</span></code></pre></div>
<h1 id="liste-ordonnée">Liste Ordonnée</h1>
<pre><code>1. Premier élément
2. Second élément</code></pre>
<ol type="1">
<li>Premier élément</li>
<li>Second élément</li>
</ol>
<h1 id="liste-non-ordonnée">Liste non-ordonnée</h1>
<pre><code>- Élément
* autre
+ plop</code></pre>
<ul>
<li>Élément</li>
<li>autre</li>
<li>plop</li>
</ul>
<h1 id="images">Images</h1>
<pre><code>Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")</code></pre>
<p>Inline-style: <img src="https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png" title="Logo Title Text 1" alt="alt text" /></p>
<h1 id="liens">Liens</h1>
<pre><code>[I'm an inline-style link with title](https://www.google.com "Google's Homepage")</code></pre>
<p><a href="https://www.google.com" title="Google's Homepage">I'm an inline-style link with title</a></p>
<h1 id="tableaux">Tableaux</h1>
<pre><code>| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |</code></pre>
<table>
<thead>
<tr class="header">
<th>Tables</th>
<th style="text-align: center;">Are</th>
<th style="text-align: right;">Cool</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>col 3 is</td>
<td style="text-align: center;">right-aligned</td>
<td style="text-align: right;">$1600</td>
</tr>
<tr class="even">
<td>col 2 is</td>
<td style="text-align: center;">centered</td>
<td style="text-align: right;">$12</td>
</tr>
<tr class="odd">
<td>zebra stripes</td>
<td style="text-align: center;">are neat</td>
<td style="text-align: right;">$1</td>
</tr>
</tbody>
</table>
<h1 id="maths">Maths</h1>
<pre><code>$\LaTeX \heartsuit \frac{5}{2}$</code></pre>
<p><span class="math inline">\(\LaTeX \heartsuit \frac{5}{2}\)</span></p>
<h1 id="convertir-avec-pandoc">Convertir avec Pandoc</h1>
<h2 id="section"></h2>
<p>On peut générer plusieurs types de fichiers à partir d'un document markdown</p>
<p><a href="/markdown/presentation.md">Source markdown</a></p>
<h2 id="un-pdf">Un pdf</h2>
<p><code>pandoc</code></p>
<p><a href="/markdown/presentation.pdf">Exemple pdf</a></p>
<h2 id="un-html">Un html</h2>
<p><code>pandoc</code></p>
<p><a href="/markdown/presentation.html">Exemple html</a></p>
<h2 id="une-présentation-reveal.js">Une présentation reveal.js</h2>
<p><code>pandoc</code></p>
<p><a href="/markdown.html">Exemple présentation</a></p>
<h1 id="plus-dinfos">Plus d'infos</h1>
<p><a href="https://daringfireball.net/projects/markdown/" class="uri">https://daringfireball.net/projects/markdown/</a></p>
<p><a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet" class="uri">https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet</a></p>
</body>
</html>