-
Notifications
You must be signed in to change notification settings - Fork 3
/
remark-template.html
57 lines (46 loc) · 1.31 KB
/
remark-template.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
<!DOCTYPE html>
<html lang="sl">
<head>
<meta charset="utf-8" />
<meta content="OPIS PREDSTAVITVE" name="description" />
<title>NASLOV PREDSTAVITVE</title>
<link href="../remark-style.css" rel="stylesheet" type="text/css">
<style>
</style>
</head>
<body>
<noscript>Če <b>omogočite JavaScript</b>, ta stran postane poučna prezentacija.</noscript>
<textarea id="source">
class: center, middle
# Naslov predstavitve
---
## Naslov slajda 1
**bold**, _italic_, .u[underline]
1. skopiraj v `p/` mapo
2. preimenuj ustrezno
3. popravi link v `index.md`
Za pomoč preberi predvsem:
* [remark basic](https://github.com/gnab/remark/wiki/Slide-Properties)
* this is [Markdown](https://help.github.com/articles/github-flavored-markdown),
you know this,
don't you?
???
Presenter notes. Access with 'p' key.
Clone screen for presentation with 'c' key.
---
## Slajd 2: nekaj kode
About [highlighting](https://github.com/gnab/remark/wiki/Configuration-Options#wiki-highlighting).
Inline koda v `backticks`.
```python
a = 4
```
---
itd.
Nekaj stilov je že definiranih, glej v CSS fajle.
Če maš kaj dobrega, generičnega za dodat, daj v globalne fajle!
(Če se pa tiče samo te predstavitve, potem ne dat, ofc.)
</textarea>
<script src="../remark.min.js"></script>
<script src="../remark-script.js"></script>
</body>
</html>