You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/basics.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
to get started make a file called `slyde.xml`, and put in the following text:
4
4
5
-
```XML
5
+
```xml
6
6
<presentationtitle="My First Slyde Presentation">
7
7
</presentation>
8
8
```
@@ -11,7 +11,7 @@ Slyde is made out of XML blocks denoted like this `<tag>...</tag>`. They are an
11
11
12
12
Now in the presentation block you can add slides as you please. Add one and optionally give it a title:
13
13
14
-
```XML
14
+
```xml
15
15
<presentationtitle="My First Slyde Presentation">
16
16
<slidetitle="Why you should use Slyde">
17
17
</slide>
@@ -20,7 +20,7 @@ Now in the presentation block you can add slides as you please. Add one and opti
20
20
21
21
Slide blocks should always be at the 2nd level. To add text to a slide add 3rd level blocks like `<text>...</text>`, `<point>....</point>`, or `<image/>`:
22
22
23
-
```XML
23
+
```xml
24
24
<presentationtitle="My First Slyde Presentation">
25
25
<slidetitle="Why you should use Slyde">
26
26
<point>It is super fast and easy to make slides</point>
@@ -32,7 +32,7 @@ Slide blocks should always be at the 2nd level. To add text to a slide add 3rd l
32
32
33
33
To style text add [markup](./markup.md). For more information about how markup works in Slyde see [the page on markup](./markup.md)
34
34
35
-
```XML
35
+
```xml
36
36
<presentationtitle="My First Slyde Presentation"by="Tygo van den Hurk">
37
37
<slidetitle="Why you should use Slyde">
38
38
<point>It is super **fast and easy** to make slides</point>
@@ -48,7 +48,7 @@ This would output the following fully animated presentation:
48
48
49
49
You can optionally add presentor notes using XML comments `<!-- ... -->`:
50
50
51
-
```XML
51
+
```xml
52
52
<presentationtitle="My First Slyde Presentation"by="Tygo van den Hurk">
53
53
<slidetitle="Why you should use Slyde">
54
54
<!-- These are my slide notes in case I forget what to say -->
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
Slyde is a program to create professional beautifully animated presentations from XML. It is fast and easy, even for non-technical people. [See the basics](./basics.md) to get started.
14
14
15
-
```XML
15
+
```xml
16
16
<presentationtitle="My First Slyde Presentation"by="Tygo van den Hurk">
17
17
<slidetitle="Why you should use Slyde">
18
18
<!-- These are my slide notes in case I forget what to say -->
Copy file name to clipboardExpand all lines: docs/markup.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,15 +72,15 @@ This markup is rendered automatically in the text of all components. The markup
72
72
73
73
You might not want the markup to be processed at all. In that case you have 3 options. You could switch the markup renderer to the `plain` named renderer. This one just returns the input without processing:
74
74
75
-
```XML
75
+
```xml
76
76
<textmarkup="plain">
77
77
**This text will NOT be bold**
78
78
</text>
79
79
```
80
80
81
81
or use a [processing instruction](./processing-instructions.md):
82
82
83
-
```XML
83
+
```xml
84
84
<?slyde markup="plain"?>
85
85
<text>
86
86
**This text will NOT be bold**
@@ -92,7 +92,7 @@ or use a [processing instruction](./processing-instructions.md):
@@ -23,7 +23,7 @@ There are a couple of requirements for any instance of `MarkupRenderer`. The fun
23
23
24
24
Now that you've added your own `MarkupRenderer` plugin you can simply render by using it's ID as the value. [See the markup documentation on how to set a renderer](../markup.md).
25
25
26
-
```XML
26
+
```xml
27
27
<textmarkup="my-language">
28
28
this is rendered using your new MyLanguage renderer
Copy file name to clipboardExpand all lines: docs/processing-instructions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Processing instructions are a special way to tell the compiler things. They do n
6
6
7
7
An example is the processing instructions to change the [markup renderer](markup.md) to something else from here on out for all next elements and their descendants.
8
8
9
-
```XML
9
+
```xml
10
10
<text>
11
11
**This text will be bold**
12
12
</text>
@@ -26,6 +26,6 @@ Here follows a list off all possible instructions:
0 commit comments