Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit 3ad00c2

Browse files
committed
Documentation generation tweaks
1 parent 5ee5ded commit 3ad00c2

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

docs/index.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<p>&nbsp;</p>
2+
<!-- <p>&nbsp;</p> -->
3+
4+
Scala/pickling is an automatic serialization framework for Scala. It's fast,
5+
boilerplate-free, and allows users to easily swap in/out different
6+
serialization formats (such as binary, or JSON), or even to provide your own
7+
custom serialization format.
8+
9+
**Basic usage:**
10+
~~~scala
11+
import scala.pickling._
12+
import json._
13+
14+
val pckl = List(1, 2, 3, 4).pickle
15+
val lst = pckl.unpickle[List[Int]]
16+
~~~
17+
118
# Getting Started
219

320
## Installation

docs/theme/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
{% if include_search %}{% include "search.html" %}{% endif %}
5151

52-
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
52+
<script src="{{ base_url }}/js/jquery-1.10.2.min.js"></script>
5353
<script src="{{ base_url }}/js/bootstrap-3.0.3.min.js"></script>
5454
<script src="{{ base_url }}/js/prettify-1.0.min.js"></script>
5555
<script src="{{ base_url }}/js/retina.min.js"></script>

0 commit comments

Comments
 (0)