From bb8be0315eeb3f21d5a8d47c6b3556b13d03eeaa Mon Sep 17 00:00:00 2001 From: Marko Budiselic Date: Mon, 2 Jul 2018 12:29:43 +0200 Subject: [PATCH] Add csv in front of all CSV code blocks Reviewers: teon.banek Reviewed By: teon.banek Differential Revision: https://phabricator.memgraph.io/D1463 --- docs/user_technical/import-tools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user_technical/import-tools.md b/docs/user_technical/import-tools.md index 786d145aa..dc5079afd 100644 --- a/docs/user_technical/import-tools.md +++ b/docs/user_technical/import-tools.md @@ -54,7 +54,7 @@ Let's import a simple dataset. Store the following in `comment_nodes.csv`. -``` +```csv id:ID(COMMENT_ID),country:string,browser:string,content:string,:LABEL 0,Croatia,Chrome,yes,Message;Comment 1,United Kingdom,Chrome,thanks,Message;Comment @@ -65,7 +65,7 @@ id:ID(COMMENT_ID),country:string,browser:string,content:string,:LABEL Now, let's add `forum_nodes.csv`. -``` +```csv id:ID(FORUM_ID),title:string,:LABEL 0,General,Forum 1,Support,Forum @@ -77,7 +77,7 @@ id:ID(FORUM_ID),title:string,:LABEL And finally, set relationships between comments and forums in `relationships.csv`. -``` +```csv :START_ID(COMMENT_ID),:END_ID(FORUM_ID),:TYPE 0,0,POSTED_ON 1,1,POSTED_ON