Github user AhyoungRyu commented on the issue: https://github.com/apache/zeppelin/pull/1577 @yoonjs2 I've tested this branch and found some issues. **1.** ``` Liquid Warning: Liquid syntax error (line 77): Expected end_of_string but found open_round in "{{noteName(note)}}" in manual/notebookashomepage.md ``` seems it needs some markdown escaping. The line number 83 in `docs/manual/notebookashomepage.md` ``` <a style="text-decoration: none;" href="#/notebook/{{note.id}}">{{noteName(note)}}</a> ``` it can be fixed simply like below ``` <a style="text-decoration: none;" href="#/notebook/{{"{{note.id"}}}}>{{"{{noteName(note)"}}}}</a> ``` then the error message will be gone :) **2.** As you know, the docs site will be deployed under `zeppelin.apache.org/docs/0.7.0-SNAPSHOT/` not `zeppelin.apache.org`. So I tested in similar env like below ``` 1) build gh-pages (website) branch JEKYLL_ENV=production bundle exec jekyll build cp -r _site/ /tmp/zeppelin_website/ mkdir -p /tmp/zeppelin-website/docs/0.7.0-SNAPSHOT 2) build this patch (docs) and copy it under docs/0.7.0-SNAPSHOT of website cd docs bundle exec jekyll build --safe cp -r _site/ /tmp/zeppelin_website/0.7.0-SNAPSHOT/ 3) start httpserver and browse http://localhost:8000/docs/0.7.0-SNAPSHOT/ cd /tmp/zeppelin_website python -m SimpleHTTPServer ``` then it throws <img width="646" alt="screen shot 2016-11-04 at 11 57 34 pm" src="https://cloud.githubusercontent.com/assets/10060731/20010178/80dcf8fc-a2ea-11e6-89d6-43558bcdac3c.png"> and not happened in master. And also some styles are not missing now. Could you check them again? And please feel free to ping me if you're in trouble while testing.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---