-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
48 lines (45 loc) · 1.08 KB
/
test.html
File metadata and controls
48 lines (45 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Markmap Example</title>
<!-- Use the Markmap View CDN -->
<script src="https://cdn.jsdelivr.net/npm/markmap-view@0.4.3"></script>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
font-family: Arial, sans-serif;
}
#markmap {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<svg id="markmap"></svg>
<script>
// Define the Markdown content
const content = `
# Sơ đồ Tư Duy
## Chủ đề Chính
- Điều 1
- Chi tiết 1.1
- Chi tiết 1.2
- Điều 2
- Chi tiết 2.1
- Chi tiết 2.2
- Điều 3
- Chi tiết 3.1
`;
// Reference the SVG container
const svg = document.getElementById('markmap');
// Create the Markmap instance
const { Markmap } = window.markmap;
Markmap.create(svg, {}, content);
</script>
</body>
</html>