-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
75 lines (68 loc) · 2.87 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
---
layout: base
class: home
---
{% capture install-include %}
{% include_relative install.markdown %}
{% endcapture %}
{% assign install-content = (install-include | split: '---') %}
<div class="page-content jumbo">
<div class="wrapper">
<h1>{{ site.title }}</h1>
<p class="desc">{{ site.description }}</p>
<div id="download">
<a id="download-stable" href="/install.html">Install</a>
<div id="install-pane">
{{ install-content[2] | markdownify }}
<a id="install-pane-close" href="#">×</a>
</div>
<br>
<a id="download-gh" href="https://github.com/intellij-rust/intellij-rust"><i class="icon-github"></i> Source</a>
</div>
</div>
</div>
<div class="page-content showcase">
<div class="wrapper">
<!--h1 class="square">What is IntelliJ Rust</h1-->
<h1 class="square">Intelligent Rust</h1>
<div class="showcase-pic">
<!--img src="/assets/ir-completion.png" class="completion"/-->
<!--img src="/assets/ir-intention.png" class="intention"-->
<img src="/assets/intro_screen_editor.png" width="800" alt="editor features"/>
<!--img src="/assets/intro_screen_debugger.png" width="900" alt="debugger"/-->
</div>
<section>
<!--h2>Intelligent Rust</h2-->
<!--p>We aim to build JetBrains-quality language support for IntelliJ IDEA and related IDEs.
Right now, you get native code completion<abbr class="wip" title="Work In Progress">WIP</abbr>,
broad navigation, intentions, formatting and much more...</p-->
<p>IntelliJ Rust brings JetBrains-quality language support and full IDE experience to your Rust workflow.</p>
<p>Rust becomes native to <a href="https://www.jetbrains.com/idea/">IDEA</a>, <a href="https://www.jetbrains.com/clion/">CLion</a>,
and other IntelliJ IDEs with smart coding assistance,
seamless Cargo support, and built-in test runner.</p>
<p>
In CLion, you get even more: fully-fledged debugger, CPU profiler, and Valgrind memcheck.
</p>
</section>
<!--section>
<h2>Corroded IDEA</h2>
<p>...while this is still your ol' good IDE. Enjoy highly productive developer experience, VCS integration
and other languages support.</p>
</section-->
<ul class="fancy-link-row">
<li><a href="/features/" class="fancy-link">All Features</a></li>
<li><a href="/docs/quick-start.html" class="fancy-link">Quick Start</a></li>
</ul>
</div>
</div>
<div class="page-content whatsnew">
<div class="wrapper">
<h1 class="square">What's new</h1>
{% assign post = site.posts.first %}
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2><a class="post-link" href="{{ post.url }}">{{ post.title }}</a></h2>
<article>{{ post.content }}</article>
<div class="center"><a href="/thisweek/" class="fancy-link">Previous editions</a>
</div>
</div>
</div>