diff --git a/docs/_includes/themes/zeppelin/_navigation.html b/docs/_includes/themes/zeppelin/_navigation.html index f3cd406051a..62db605fb4c 100644 --- a/docs/_includes/themes/zeppelin/_navigation.html +++ b/docs/_includes/themes/zeppelin/_navigation.html @@ -37,6 +37,7 @@ Interpreter

**POST**. And the parameters you need are:
+
+ 1. **Artifact:** Maven artifact ( groupId:artifactId:version )
+
+ 2. **Class Name:** Package name + Interpreter class name
+
+ 3. **Repository ( optional ):** Additional maven repository address
+
+For example, if you want to load `markdown` interpreter to your Zeppelin, the parameters and URL you need may look like:
+
+```
+http://127.0.0.1:8080/api/interpreter/load/md/markdown
+```
+
+```
+{
+ "artifact": "org.apache.zeppelin:zeppelin-markdown:0.6.0-incubating-SNAPSHOT",
+ "className": "org.apache.zeppelin.markdown.Markdown",
+ "repository": {
+ "url": "http://dl.bintray.com/spark-packages/maven",
+ "snapshot": false
+ }
+}
+```
+
+
+The meaning of each parameters is:
+
+ 1. **Artifact**
+ - groupId: org.apache.zeppelin
+ - artifactId: zeppelin-markdown
+ - version: 0.6.0-incubating-SNAPSHOT
+
+ 2. **Class Name**
+ - Package Name: org.apache.zeppelin
+ - Interpreter Class Name: markdown.Markdown
+
+ 3. **Repository ( optional )**
+ - Url: http://dl.bintray.com/spark-packages/maven
+ - Snapshot: false
+
+> Please note: The interpreters you downloaded need to be **reload**, when your Zeppelin server is down.
+
+### 2. Unload
+If you want to **unload** the interpreters using REST API,
+
+```
+http://[zeppelin-server]:[zeppelin-port]/api/interpreter/unload/[interpreter_group_name]/[interpreter_name]
+```
+In this case, the Restful method will be **DELETE**.
+
+



