This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
102 lines (89 loc) · 3.78 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
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
<!DOCTYPE html>
<html>
<head>
<link media="all" rel="stylesheet" href="docs/toml.css" />
<title>TOML Editor for Eclipse</title>
</head>
<body>
<div id="container" class="center">
<h1>TOML Editor - plugin for Eclipse</h1>
<p><a href="https://toml.io/en/" target="_blank">TOML</a> is a widely used language for configuration files (for example: Python testing with TOX).
<br/>It is supported by plenty of programming languages (Python, C++, etc) and also by plenty of IDEs, but there is not many free of charge plugins for Eclipse.
<br/>This editor fills that gap.
<h2>Features</h2>
<ul>
<li>Sections highlighting
<br>TOML names sections: <a href="https://toml.io/en/v1.0.0#table">TABLES</a>
</li>
<li>Key-value pair highlighting</li>
<li>Data types highlighting</li>
<li>Content assist (simple up to now)
<li>Colours preferences:<br>
<span class="mono">Preferences... -> General -> Appearance -> Colors and Fonts -> TOML Editor</span>
</li>
<li>Outline View support</li>
<li>Parent-Child level changes in Outline View</li>
</ul>
<h3>More than words...</h3>
<p>
<table>
<tr>
<td>Preferences</td>
<td><img src="docs/settings.png" width="420" /></td>
</tr>
<tr>
<td>Content Assits</td>
<td><img src="docs/assist.png" width="220" /></td>
</tr>
<tr>
<td>
Outline View
<br><span style="font-size:10px; font-style: italic;">with different levels</span>
</td>
<td>
<img src="docs/outline1.png" width="240" />
<img src="docs/outline2.png" width="240" />
<img src="docs/outline3.png" width="240" />
</td>
</tr>
</table>
</p>
<p>
<br/>Comparision picture shows main differences: <i>without</i> or <i><b>with</b></i> plugin<br/><br/>
<img src="docs/usecase.png" width="900" />
</p>
<h2>Installation</h2>
<ul>
<li>In Eclipse: Help/Install New Software...</li>
<li>Add site: <span class="addlink">https://amadeusitgroup.github.io/eclipse-toml-editor/updates</span></li>
<li>Install newest version</li>
</ul>
<img src="docs/addnew.png" width="800" style="padding-left: 40px;"/>
<h2>Contribution</h2>
<p>
<table class="noborder">
<tr>
<td><img src="docs/developer.png" alt="Free of charge image" title="Free of charge image"/></td>
<td>
If you have new ideas and want to improve plugin, <b>just fork</b> source code on GitHub
<br> and <span style="font-size: 16px; color: blue;">feel free to create</span>
</br>
Source code: <a href="https://github.com/AmadeusITGroup/eclipse-toml-editor">https://github.com/AmadeusITGroup/eclipse-toml-editor</a>
</td>
</tr>
</table>
</p>
<h3>Some <span style="color: blue;">TODO</span> items</h3>
Here some ideas that could improve plugin and make work yet easier. More one can read in TODO.md file in source code.
<ul>
<li>Validation with errors highlighting</li>
<li>Improved parsing and tokenizing</li>
<li>Arrays highlighting</li>
<li>Serialization to JSON</li>
<li>Configurable comment character</li>
</ul>
<h2>TOML Reference</h2>
Check TOML details: <a href="https://toml.io/en/v1.0.0">https://toml.io/en/v1.0.0</a>
</div>
</body>
</html>