Skip to content

Commit

Permalink
updated site
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Feb 1, 2018
1 parent a5cfaae commit 47a8715
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
}
</style><title>Scalameta</title><script src="scripts.js"></script></head><body><div>

<div style="margin: 0px;color: #333;text-align: center;padding: 2.5em 2em 0;border-bottom: 1px solid #eee;display: block;" id="Scalameta" class=" scalatex-site-Styles-hoverContainer scalatex-site-Styles-headerTag"><h1 style="margin: 0.2em 0;font-size: 3em;font-weight: 300;"><img src="img/scalameta-logo.png" style="padding: 0;margin-right: 0.4em;vertical-align: -0.35em;height: 1.1em;" />Scalameta<a class=" scalatex-site-Styles-headerLink" href="#Scalameta" style="position: absolute;right: 0px;"><i class="fa fa-link"></i></a></h1><br /><h2 style="font-weight: 300;color: #ccc;padding: 0px;margin-top: 0px;">2.1.7 (released on 22 Jan 2018)</h2></div><div class=" scalatex-site-Styles-content">
<div style="margin: 0px;color: #333;text-align: center;padding: 2.5em 2em 0;border-bottom: 1px solid #eee;display: block;" id="Scalameta" class=" scalatex-site-Styles-hoverContainer scalatex-site-Styles-headerTag"><h1 style="margin: 0.2em 0;font-size: 3em;font-weight: 300;"><img src="img/scalameta-logo.png" style="padding: 0;margin-right: 0.4em;vertical-align: -0.35em;height: 1.1em;" />Scalameta<a class=" scalatex-site-Styles-headerLink" href="#Scalameta" style="position: absolute;right: 0px;"><i class="fa fa-link"></i></a></h1><br /><h2 style="font-weight: 300;color: #ccc;padding: 0px;margin-top: 0px;">3.0.0 (released on 01 Feb 2018)</h2></div><div class=" scalatex-site-Styles-content">

<p>
Scalameta is a modern metaprogramming library for Scala that supports
Expand Down Expand Up @@ -274,7 +274,7 @@
To get started with scalameta, add the following to your <code>build.sbt</code>:
</p>
<pre><code class="scala scalatex-site-Styles-highlightMe">// Latest stable version
libraryDependencies += &quot;org.scalameta&quot; %% &quot;scalameta&quot; % &quot;2.1.7&quot;
libraryDependencies += &quot;org.scalameta&quot; %% &quot;scalameta&quot; % &quot;3.0.0&quot;
</code></pre>
<p>
Next, you'll need to add a single wildcard import to the files where you'll
Expand Down
Binary file removed talks/2017-04-21-SemanticToolingAtTwitter.pdf
Binary file not shown.
Binary file removed talks/2017-06-01-SemanticToolingAtTwitter.pdf
Binary file not shown.
12 changes: 6 additions & 6 deletions tutorial/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ <h1 id="Library" style="display: block;" class=" scalatex-site-Styles-hoverConta
You can use Scalameta as a library, the <code>scalameta</code> umbrella package
includes modules for trees, tokens, parsing, pretty printing, semantic API
and more,
<pre><code class="scala scalatex-site-Styles-highlightMe">libraryDependencies += &quot;org.scalameta&quot; %% &quot;scalameta&quot; % &quot;2.1.7&quot;
<pre><code class="scala scalatex-site-Styles-highlightMe">libraryDependencies += &quot;org.scalameta&quot; %% &quot;scalameta&quot; % &quot;3.0.0&quot;
</code></pre>
Optionally, for extra utilities, you can use <a href="#Contrib">Contrib</a>
<pre><code class="scala scalatex-site-Styles-highlightMe">libraryDependencies += &quot;org.scalameta&quot; %% &quot;contrib&quot; % &quot;2.1.7&quot;
<pre><code class="scala scalatex-site-Styles-highlightMe">libraryDependencies += &quot;org.scalameta&quot; %% &quot;contrib&quot; % &quot;3.0.0&quot;
</code></pre>
<h1 id="Tutorial" style="display: block;" class=" scalatex-site-Styles-hoverContainer scalatex-site-Styles-headerTag"><a class=" scalatex-site-Styles-headerLink" href="#Tutorial" style="position: absolute;right: 0px;"><i class="fa fa-link"></i></a>Tutorial</h1>
The examples mentioned in this tutorial are available in a single repository
Expand Down Expand Up @@ -117,7 +117,7 @@ <h1 id="Tutorial" style="display: block;" class=" scalatex-site-Styles-hoverCont
<h1 id="AmmoniteREPL" style="display: block;" class=" scalatex-site-Styles-hoverContainer scalatex-site-Styles-headerTag"><a class=" scalatex-site-Styles-headerLink" href="#AmmoniteREPL" style="position: absolute;right: 0px;"><i class="fa fa-link"></i></a>Ammonite REPL</h1>
To experiment with Scalameta in the REPL, you can run the following
in the <a href="http://www.lihaoyi.com/Ammonite/#Ammonite-REPL">Ammonite REPL</a>
<pre><code class="scala scalatex-site-Styles-highlightMe">import $ivy.`org.scalameta:scalameta_2.12:2.1.7`, scala.meta._</code></pre>
<pre><code class="scala scalatex-site-Styles-highlightMe">import $ivy.`org.scalameta:scalameta_2.12:3.0.0`, scala.meta._</code></pre>



Expand Down Expand Up @@ -484,9 +484,9 @@ <h1 id="SemanticDB" style="display: block;" class=" scalatex-site-Styles-hoverCo
The storage format used for the SemanticDB is defined using
<a href="https://developers.google.com/protocol-buffers/">Protocol Buffers</a>,
or &quot;protobuf&quot; for short. The SemanticDB protobuf schema is small, at
the time of this writing it is ~60 lines of code. The full schema is
the time of this writing it is ~100 lines of code. The full schema is
available
<a href="https://github.com/scalameta/scalameta/blob/master/semanticdb/semanticdb2/semanticdb2.proto">here</a>.
<a href="https://github.com/scalameta/scalameta/blob/master/semanticdb/README.md">here</a>.
Files containing SemanticDB binary data use the <code>.semanticdb</code> file
extension by convention.
</p>
Expand Down Expand Up @@ -695,4 +695,4 @@ <h1 id="WherecanIaskmorequestions?" style="display: block;" class=" scalatex-sit
);
})
})
</script></body></html>
</script></body></html>

0 comments on commit 47a8715

Please sign in to comment.