diff --git a/docs/displaysystem/table.md b/docs/displaysystem/basicdisplaysystem.md similarity index 60% rename from docs/displaysystem/table.md rename to docs/displaysystem/basicdisplaysystem.md index c2aefde54b..5eaa6edcd9 100644 --- a/docs/displaysystem/table.md +++ b/docs/displaysystem/basicdisplaysystem.md @@ -1,6 +1,6 @@ --- layout: page -title: "Table Display System" +title: "Basic Display System" description: "" group: display --- @@ -18,6 +18,11 @@ See the License for the specific language governing permissions and limitations under the License. --> {% include JB/setup %} +## Html + +With `%html` directive, Zeppelin treats your output as html + + ## Table @@ -25,12 +30,24 @@ If you have data that row seprated by '\n' (newline) and column separated by '\t -You can simply use %table display system to leverage Zeppelin's built in visualization. +You can simply use `%table` display system to leverage Zeppelin's built in visualization. Note that display system is backend independent. -If table contents start with %html, it is interpreted as an HTML. +If table contents start with `%html`, it is interpreted as an HTML. + +## Text + +Zeppelin prints output of language backend in text, by default. + + + +You can explicitly say you're using text display system. + + + +Note that display system is backend independent. diff --git a/docs/displaysystem/html.md b/docs/displaysystem/html.md deleted file mode 100644 index c92924182d..0000000000 --- a/docs/displaysystem/html.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: page -title: "Html Display System" -description: "" -group: display ---- - -{% include JB/setup %} -## Html - -With '%html' directive, Zeppelin treats your output as html - - diff --git a/docs/displaysystem/text.md b/docs/displaysystem/text.md deleted file mode 100644 index e843f19735..0000000000 --- a/docs/displaysystem/text.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: page -title: "Text Display System" -description: "" -group: display ---- - -{% include JB/setup %} -## Text - -Zeppelin prints output of language backend in text, by default. - - - -You can explicitly say you're using text display system. - - - -Note that display system is backend independent.