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.