Skip to content

Commit 13268d7

Browse files
authored
Highlight mix test output on the homepage (elixir-lang#1494)
1 parent f3070db commit 13268d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎index.html‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,15 @@ <h4>A growing ecosystem</h4>
151151
<divclass="entry-summary">
152152
<p>Elixir ships with a great set of tools to ease development. <ahref="https://hexdocs.pm/mix/">Mix is a build tool</a> that allows you to easily create projects, manage tasks, run tests and more:</p>
153153

154-
{% highlight text %}
154+
<pre><code>
155155
$ mix new my_app
156156
$ cd my_app
157157
$ mix test
158-
.
158+
<spanstyle="color:#919D41">.</span>
159159

160160
Finished in 0.04 seconds (0.04s on load, 0.00s on tests)
161-
1 tests, 0 failures
162-
{% endhighlight %}
161+
<spanstyle="color:#919D41">1 test, 0 failures</span>
162+
</code></pre>
163163

164164
<p>Mix is also able to manage dependencies and integrates with the <ahref="https://hex.pm/">Hex package manager</a>, which performs dependency resolution, fetches remote packages, and <ahref="https://hexdocs.pm/">hosts documentation</a> for the whole ecosystem.</p>
165165
</div>

0 commit comments

Comments
(0)