-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (118 loc) · 4.68 KB
/
index.html
File metadata and controls
132 lines (118 loc) · 4.68 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VanStudio</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="/favicon.svg" type="image/svg+xml">
</head>
<body>
<div class="header">
<header>
<div class="menu-mobile">
<a href="index.html" class="active">Home</a>
<div id="myLinks">
<a href="feature.html">Features</a>
<a href="help.html">Documentation</a>
<a href="note.html">What's New</a>
<a href="issue.html">Known Issue</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="menu">
<ul class="menu-item">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="feature.html">Features</a></li>
<li><a href="help.html">Documentation</a></li>
<li><a href="note.html">What's New</a></li>
<li><a href="issue.html">Known Issue</a></li>
</ul>
</div>
</header>
</div>
<div class="content">
<div class="section">
<h1>Welcome to</h1>
<div class="main-logo">
<img class="center" src="/vanstudio.svg" title="VanStudio" alt="VanStudio">
</div>
</div>
<div class="section">
<h2>Modular Structure</h2>
<img src="images/sd-modular.svg" alt="Module">
<p></p>
<div class="info box tip-box">
<p>SequenceDiagram evolved into a multi-module architecture. It consists of a core module and several language modules. Each module is an IntelliJ Platform plugin, and they can be freely combined to work together.</p>
<p>What programming languages would you most like SequenceDiagram to support?<a href="https://github.com/Vanco/IssueTracker/discussions/2">Language polls</a></p>
</div>
<p></p>
</div>
<div class="section-dark">
<h2>Product & Service</h2>
<div class="wrapper">
<div class="col1">
<div id="core"></div>
</div>
<div class="col2">
<p>SequenceDiagram Core, a plugin for IntelliJ IDEA, is free download with freemium function, help you</p>
<ul>
<li>Generate simple sequence diagram of method.</li>
<li>Navigate the code by click the diagram shape.
<li>Export the diagram as image(SVG, JPEG, PNG, TIFF).
<li>Export the diagram as PlantUML, Mermaid format file.
</ul>
<div class="right">
<div id="install"></div>
</div>
</div>
</div>
</div>
<div class="section">
<h3>Language Modules</h3>
<div class="wrapper">
<div class="col1">
<div id="java"></div>
</div>
<div class="col1">
<div id="js"></div>
</div>
<div class="col1">
<div id="rust"></div>
</div>
<div class="col1">
<div id="go"></div>
</div>
<div class="col1">
<div id="cpp"></div>
</div>
<div class="col1">
<div id="python"></div>
</div>
</div>
</div>
</div>
<div class="footer"> Copyright © 2016-2026 VanStudio
<!--img width="100" title="neocities.org" src="/neocities.png"-->
</div>
<script src="https://plugins.jetbrains.com/assets/scripts/mp-widget.js"></script>
<script src="vs.js"></script>
<script>
// Please, replace #yourelement with a real element id on your webpage
MarketplaceWidget.setupMarketplaceWidget('card', 8286, "#core");
MarketplaceWidget.setupMarketplaceWidget('card', 24948, "#java");
MarketplaceWidget.setupMarketplaceWidget('card', 24973, "#js");
MarketplaceWidget.setupMarketplaceWidget('card', 25376, "#rust");
MarketplaceWidget.setupMarketplaceWidget('card', 25623, "#go");
MarketplaceWidget.setupMarketplaceWidget('card', 25807, "#cpp");
MarketplaceWidget.setupMarketplaceWidget('card', 25978, "#python");
MarketplaceWidget.setupMarketplaceWidget('install', 8286, "#install");
</script>
</body>
</html>