-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathindex.html
63 lines (51 loc) · 2.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Markdown editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="demo.css" />
<link rel="stylesheet" href="content.css" />
</head>
<body>
<div class="header-wrapper">
<h1>Markdown editor</h1>
</div>
<div class="editor-wrapper">
<div id="cke5-markdown-demo">
## Markdown output 🛫
[CKEditor 5](https://ckeditor.com/) can be configured to output Markdown instead of HTML. Markdown is a lightweight markup language that you can use to add formatting to plain text documents. Use the **Source** button to check and edit the Markdown source code of this content.
The editor-produced Markdown output supports most essential features, like [links](https://ckeditor.com/), **different** kinds of _emphasis_, `inline code formatting`, or code blocks:
```css
p {
text-align: center;
color: red;
}
```
## Markdown input 🛬
Thanks to the [autoformatting feature](https://ckeditor.com/docs/ckeditor5/latest/features/autoformat.html), you can use Markdown syntax when writing. Try it out - use these (or any other) Markdown shortcuts in the editor to format the content on the fly 🚀!
| Inline formatting | Shortcut |
| --- | --- |
| **Bold** | Type `**` or `__` around your text. |
| _Italic_ | Type `*` or `_` around your text. |
| `Code` | Type `ˋ` around your text. |
| ~Strikethrough~ | Type `~~` around your text. |
Shh! 🤫 Markdown has very basic support for tables. Some advanced table-related features like table or cell styling were disabled in this demo.
## Block formatting
You can also use Markdown to create various text blocks, such as:
* Block quotes - Start a line with `﹥` followed by a space.
* Headings:
1. Heading 1 - Start a line with `#` followed by a space.
2. Heading 2 - Start a line with `##` followed by a space.
3. Heading 3 - Start a line with `###` followed by a space.
* Lists, including nested ones:
* Numbered lists - Start a line with `1.` or `1)` followed by a space.
* Bulleted lists - Start a line with `*` or `-` followed by a space.
* To-do lists - Start a line with `[ ]` or `[x]` followed by a space to insert an unchecked or checked list item.
* Code blocks - Start a line with `ˋˋˋ`.
* Horizontal lines - Start a line with `---`
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>