Skip to content

Commit

Permalink
Do not escape < and > on highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Dec 4, 2012
1 parent fd0e122 commit c3d5da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -155,7 +155,7 @@ <h4>Erlang all the way down</h4>
{% highlight ruby %} {% highlight ruby %}
:application.start(:crypto) :application.start(:crypto)
:crypto.md5("Using crypto from Erlang OTP") :crypto.md5("Using crypto from Erlang OTP")
#=> &lt;&lt;192,223,75,115,...&gt;&gt; #=> <<192,223,75,115,...>>
{% endhighlight %} {% endhighlight %}


<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>! <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>!
Expand Down

0 comments on commit c3d5da5

Please sign in to comment.