This is an automated email from the ASF dual-hosted git repository. jongyoul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 7137e88056 [MINOR] document 'markdown' display system (#4549) 7137e88056 is described below commit 7137e88056d0025600d61653640adbcab4e9da36 Author: Arnout Engelen <arn...@bzzt.net> AuthorDate: Sat Jan 14 14:26:42 2023 +0100 [MINOR] document 'markdown' display system (#4549) * [MINOR] document 'markdown' display system * Update docs/usage/display_system/basic.md Co-authored-by: Jongyoul Lee <jongy...@gmail.com> --- docs/usage/display_system/basic.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/usage/display_system/basic.md b/docs/usage/display_system/basic.md index 5080fffcbc..f0a4dde965 100644 --- a/docs/usage/display_system/basic.md +++ b/docs/usage/display_system/basic.md @@ -1,7 +1,7 @@ --- layout: page title: "Basic Display System in Apache Zeppelin" -description: "There are 3 basic display systems in Apache Zeppelin. By default, Zeppelin prints interpreter responce as a plain text using text display system. With %html directive, Zeppelin treats your output as HTML. You can also simply use %table display system to leverage Zeppelin's built in visualization." +description: "There are several display systems available in Apache Zeppelin. By default, Zeppelin prints interpreter response as a plain text using %text display system. However, display systems for showing HTML, tables, markdown or even graph visualizations are also available." group: usage/display_system --- <!-- @@ -39,6 +39,10 @@ With `%html` directive, Zeppelin treats your output as HTML <img src="{{BASE_PATH}}/assets/themes/zeppelin/img/screenshots/display_html.png" /> +## Markdown + +You can render your output as markdown with the `%markdown` directive. + ### 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