diff --git a/README.md b/README.md
index 613a6643c..22a1e2739 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
is a leading multi-model graph database
-
+
Graph Processing & Analytics for Relational Databases
@@ -24,7 +24,7 @@
-
+
@@ -119,7 +119,7 @@ sudo apt-get install build-essential libreadline-dev zlib1g-dev flex bison
Installation
-Apache AGE is intended to be simple to install and run. It can be installed with Docker and other traditional ways.
+Apache AGE is intended to be simple to install and run. It can be installed with Docker and other traditional ways.
Install PostgreSQL
@@ -154,16 +154,16 @@ Clone the github repository or downl
Run the pg_config utility and check the version of PostgreSQL. Currently, only PostgreSQL versions 11, 12, 13, 14, 15, 16 & 17 are supported. If you have any other version of Postgres, you will need to install PostgreSQL version 11, 12, 13, 14, 15, 16 & 17.
-
+
```bash
pg_config
```
-Run the following command in the source code directory of Apache AGE to build and install the extension.
-
+Run the following command in the source code directory of Apache AGE to build and install the extension.
+
```bash
make install
```
-
+
If the path to your Postgres installation is not in the PATH variable, add the path in the arguments:
```bash
make PG_CONFIG=/path/to/postgres/bin/pg_config install
@@ -228,14 +228,14 @@ SELECT create_graph('graph_name');
To create a single vertex with label and properties, use the CREATE clause.
```bash
-SELECT *
+SELECT *
FROM cypher('graph_name', $$
CREATE (:label {property:"Node A"})
$$) as (v agtype);
```
```bash
-SELECT *
+SELECT *
FROM cypher('graph_name', $$
CREATE (:label {property:"Node B"})
$$) as (v agtype);
@@ -244,7 +244,7 @@ $$) as (v agtype);
To create an edge between two nodes and set its properties:
```bash
-SELECT *
+SELECT *
FROM cypher('graph_name', $$
MATCH (a:label), (b:label)
WHERE a.property = 'Node A' AND b.property = 'Node B'
@@ -302,7 +302,7 @@ After installing AGE Extension, you may use this tool to get access to the visua
Video Links
-You can also get help from these videos.
+You can also get help from these videos.
- Install on [Windows](https://www.youtube.com/watch?v=ddk8VX8Hm-I&list=PLGp3huJbWNDjgwP7s99Q-9_w1vxpjNHXG)
- Install on [MacOS](https://www.youtube.com/watch?v=0-qMwpDh0CA)