Skip to content

Commit f8584e5

Browse files
author
José Valim
committed
Do not escape < and > on highlight
1 parent ecdf9a8 commit f8584e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h4>Erlang all the way down</h4>
155155
{% highlight ruby %}
156156
:application.start(:crypto)
157157
:crypto.md5("Using crypto from Erlang OTP")
158-
#=> &lt;&lt;192,223,75,115,...&gt;&gt;
158+
#=> <<192,223,75,115,...>>
159159
{% endhighlight %}
160160

161161
<p>Since Elixir generates the same bytecode, Elixir is fully <a href="http://learnyousomeerlang.com/what-is-otp" target="_blank">OTP</a> compliant and doesn't try to break any of those battle-field tested techniques Erlang is familiar for. Erlang type specifications, behaviors and module attributes are all supported. It is easy to <a href="/crash-course.html#interop">add Elixir to your existing Erlang programs too (including rebar support)</a>!

0 commit comments

Comments
 (0)