From 4be330bfd50fd5ae15be6f79337a77e457fea28e Mon Sep 17 00:00:00 2001 From: AhyoungRyu Date: Tue, 13 Dec 2016 19:01:21 +0900 Subject: [PATCH] Fix broken display_formula.png by using relative path --- docs/displaysystem/basicdisplaysystem.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/displaysystem/basicdisplaysystem.md b/docs/displaysystem/basicdisplaysystem.md index 78f9b30b2f9..7c4243208e4 100644 --- a/docs/displaysystem/basicdisplaysystem.md +++ b/docs/displaysystem/basicdisplaysystem.md @@ -27,37 +27,37 @@ limitations under the License. By default, Apache Zeppelin prints interpreter response as a plain text using `text` display system. - + You can explicitly say you're using `text` display system. - + ## Html With `%html` directive, Zeppelin treats your output as HTML - + ### Mathematical expressions HTML display system automatically formats mathematical expression using [MathJax](https://www.mathjax.org/). You can use `\\( INLINE EXPRESSION \\)` and `$$ EXPRESSION $$` to format. For example - + ## Table -If you have data that row separated by '\n' (newline) and column separated by '\t' (tab) with first row as header row, for example +If you have data that row separated by `\n` (newline) and column separated by `\t` (tab) with first row as header row, for example - + You can simply use `%table` display system to leverage Zeppelin's built in visualization. - + If table contents start with `%html`, it is interpreted as an HTML. - + > **Note :** Display system is backend independent.