-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.html
86 lines (75 loc) · 3.37 KB
/
doc.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
<html>
<head>
<meta charset="UTF-8">
<title>Code2Slide</title>
<meta name="description" content="">
<meta name="keywords" content="codigo, slide, programção">
<meta name="author" content="Luis Araujo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/go.min.js"></script>
<link href="style_template.css" rel="stylesheet" />
</style>
</head>
<body>
<header class="bg-white">
<nav class="mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8" aria-label="Global">
<div class="flex lg:flex-1">
<a href="index.html" class="-m-1.5 p-1.5">
<span class="sr-only">Your Company</span>
<img class="h-10 w-auto" src="screens/logo.png" alt="">
</a>
</div>
</nav>
</header>
<div class="m-10">
<div class="mb-10">
<h1 class="font-bold text-xl">Model file</h1>
<span>Use this template to create your file. </span>
<pre class="mt-10">##{'number':'order', 'title':'you title', 'description'='your description'}
</pre>
<span>The line with data must have the symbol (##), title, number and description in json format. The slide is printed in numerical order. Use negative number to exclude a part of the code from the generated presentation.</span>
<pre class="mt-10">##{'number':'1', 'title':'changeState', 'description'='This function modifies the user's state (state is a string)'}
def changeState(state):
mystate = statde
##{'number':'2', 'title':'Showing State', 'description'='This function prints the user state to the console.'}
def printState()
print('o seu estado é', mystate)
</pre>
<span style="margin-top: 5px">Use negative number to exclude a part of the code from the generated presentation.</span>
<pre>
##{'number':'-1'}
def printState()
print('o seu estado é', mystate)
</pre>
</div>
<div>
<h2 class="font-bold">Contact</h2>
<span>Please send your feedback and suggestions to the following e-mail address: luisaraujo.ifba (at) gmail.com.</span>
</div>
<div>
<h2 class="font-bold">Aims</h2>
This tools was developed to support teachers in your classes.
</div>
<div>
<h2 class="font-bold">Copyright</h2>
The application is actively developed by Luis Araujo. The use of the application is free, but it may not be used for commercial purposes. Any customization or copy of the application must be given in writing.
</div
<div>
<h2 class="font-bold">Tools</h2>
This platform uses the below frameworks:
<ul class="list-disc ml-10">
<li><a href="https://fontawesome.com/v4/icons">Font Awesome 4</a></li>
<li><a href="https://tailwindcss.com">TailWind</a></li>
<li><a href="https://highlightjs.org">Highlight.js</a></li>
<li><a href="https://html2pdf.com">Html2PDF</a></li>
</ul>
</div>
</div>
</body>
</html>