-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathzmodel-v3-preview-release-notes.html
More file actions
95 lines (90 loc) · 3.58 KB
/
zmodel-v3-preview-release-notes.html
File metadata and controls
95 lines (90 loc) · 3.58 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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/@vscode/codicons@0.0.40/dist/codicon.min.css" rel="stylesheet" />
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
padding: 20px;
max-width: 800px;
margin: 0 auto;
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
}
.header {
background-color: var(--vscode-button-background);
color: var(--vscode-button-foreground);
padding: 20px;
border-radius: 8px;
text-align: center;
margin-bottom: 20px;
}
.feature {
background-color: var(--vscode-textBlockQuote-background);
border: 1px solid var(--vscode-textBlockQuote-border);
padding: 15px;
border-radius: 6px;
margin: 15px 0;
border-left: 4px solid var(--vscode-button-background);
}
.steps {
background-color: var(--vscode-textCodeBlock-background);
padding: 15px;
border-radius: 6px;
margin: 15px 0;
}
a {
color: var(--vscode-textLink-foreground);
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: var(--vscode-textLink-activeForeground);
}
</style>
</head>
<body>
<div class="header">
<h1>🎉 Introducing ZModel Documentation Preview</h1>
<p>Preview documentation directly from your ZModel powered by AI</p>
</div>
<div class="feature">
<h3>📖 What's New</h3>
<p>
You can now preview comprehensive documentation for your ZModel files, just like you would preview a
markdown file.
</p>
</div>
<div class="steps">
<h3>🚀 How to Use</h3>
<ol>
<li>Open your <code>.zmodel</code> file</li>
<li>
Click (<span class="codicon codicon-preview"></span>) in the editor toolbar, or press
<code>Cmd + Shift + V</code> (Mac) or
<code>Ctrl + Shift + V</code> (Windows)
</li>
<li>Sign in with ZenStack (one-time setup)</li>
<li>
Click (<span class="codicon codicon-save"></span>) in the preview toolbar to save the doc, or press
<code>Cmd + Shift + S</code> (Mac) or
<code>Ctrl + Shift + S</code> (Windows)
</li>
</ol>
</div>
<div class="steps">
<h3>💡 Tips</h3>
<ul>
<li>Ensure your zmodel is error-free before generating.</li>
<li>Use your main zmodel file, which will include all imported models, for complete documentation.</li>
<li>
Add clear, descriptive comments in your ZModel. The more context you provide, the better the
results.
</li>
</ul>
</div>
<p style="text-align: center; color: var(--vscode-descriptionForeground); margin-top: 30px">
Happy coding with ZenStack! 🚀<br />
</p>
</body>
</html>