-
Notifications
You must be signed in to change notification settings - Fork 1
/
guiadeedicion.en.reset
45 lines (41 loc) · 1.34 KB
/
guiadeedicion.en.reset
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
% TITLE=Editing Guide
% SUBTITLE=Learn how to add new content
% DESCRIPTION=Editing Guide to edit content
% KEYWORDS=edit developer content
=HTML code=
----
If you know html code you can use it and add some content and format that is not yet implemented in the parser. For example to insert a youtube video:
''Code:''
<code class="terminal">
<p class="centered"><iframe class="youtube-player" width="640" height="385" src="http://www.youtube.com/embed/ylqSrJCdh7Q"></iframe></p>
</code>
<br>
''Result'':
<p class="centered"><iframe class="youtube-player" width="640" height="385" src="http://www.youtube.com/embed/ylqSrJCdh7Q"></iframe></p>
To see more examples of html code and how it looks, take a look at [/content-example-html this page].
=RESET code=
----
Don't you know HTML? No problem, we are developing another way to add content. Currently we can add:
==Titles==
''Code:''
<code class="terminal">
=Title 1=<br>
==Title 2==<br>
===Title 3===<br>
</code>
''Result:''<br>
=Title 1=
==Title 2==
===Title 3===
==Links==
''Code:''
<code class="terminal">
[http://www.upm.es/ UPM]
</code>
''Result:''<br>
[http://www.upm.es/ UPM]
==Horizontal line==
''Code(There are four hyphens. But ,in this case, it doesn't work if you copy them, so write them manually):''
<code class="terminal">‐‐‐‐</code>
''Result:''<br>
----