mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
30 lines
705 B
HTML
30 lines
705 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="dist/mermaid.css"/>
|
|
|
|
<script src="dist/mermaid.js"></script>
|
|
<script>
|
|
mermaid.initialize({
|
|
gantt: {
|
|
leftPadding: 400
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="mermaid" id="i211">
|
|
gantt
|
|
dateFormat YYYY-MM-DD
|
|
title My Project
|
|
|
|
section Long Long Long Long Task Name
|
|
Completed task :done, des1, 2016-04-25, 2016-05-21
|
|
Active task :active, des1, 2016-04-25, 2016-04-30
|
|
Future task : des1, 2016-04-25, 2016-05-30
|
|
</div>
|
|
</body>
|
|
</html>
|