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
{{ message }}
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: doc/markdown/markdown.md
+43-6Lines changed: 43 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,13 @@ This documentation has for goal to introduce you briefly on how is it working ou
8
8
-[Editing](#editing)
9
9
-[Example](#example)
10
10
-[Attributes](#attributes)
11
+
-[Notes](#notes)
11
12
12
13
## Introduction
13
14
14
15
It's pretty simple, the goal of the editing with Markdown is to offer the same abilities as if you would have while editing your talk with HTML.
15
16
16
-
When you edit your talk with Markdown, furthermore than the set of common supported tags, the [DeckDeckGo Webpack Markdown Plugin](https://github.com/deckgo/deckdeckgo-webpack-markdown-plugin) extend these by adding the support of the different [DeckDeckGo] slides as documented in the 👉 [extended documentation](doc/slides/slides.md) 👈.
17
+
When you edit your talk with Markdown, furthermore than the set of common supported tags, the [DeckDeckGo Webpack Markdown Plugin](https://github.com/deckgo/deckdeckgo-webpack-plugins) extend these by adding the support of the different [DeckDeckGo] slides as documented in the 👉 [extended documentation](doc/slides/slides.md) 👈.
17
18
18
19
Your Markdown code will, through the help of the plugin, be compiled and injected in the `index.html` distribution file at build time. Doing so, your [DeckDeckGo] presentation will remain SEO friendly even without server side rendering.
19
20
@@ -25,7 +26,7 @@ Furthermore the plugin takes care of injecting the content you would provide in
25
26
26
27
### Example
27
28
28
-
The following `</deckgo-slide-title>` slide:
29
+
The following `<deckgo-slide-title/>` slide:
29
30
30
31
```
31
32
--- title
@@ -39,17 +40,17 @@ would be parsed into:
39
40
```
40
41
<deckgo-slide-title>
41
42
<h1 slot="title">My presentation title</h1>
42
-
<p slot="content">
43
-
Hello World 🚀
44
-
</p>
43
+
<div slot="content">
44
+
<p>Hello World 🚀</p>
45
+
</div>
45
46
</deckgo-slide-title>
46
47
```
47
48
48
49
### Attributes
49
50
50
51
As some templates needs attributes, you would also be able to specify them in Markdown.
0 commit comments