diff --git a/README.md b/README.md
index 32a3473..5581cbf 100644
--- a/README.md
+++ b/README.md
@@ -37,31 +37,31 @@ If you want to use this plugin, you need to follow the following steps to set up
### 1. Setting up the Notion API
-1). go to [Notion API](https://www.notion.com/my-integrations) to create a new integration, and **copy the token**.
+1). Go to [Notion API](https://www.notion.com/my-integrations) to create a new integration, and **copy the token**.
-
+
2). Create a database in your Notion workspace.
Open Notion, click top-left `Create` a new page` -> You can give a title for the page and press "/" Select 'Database - Full page'.
-
+
-Rename the database properties to `title` and `tags`.
+Rename the database properties to `title` and `tags`.
**⚠️⚠️`title` is the title column! `tags` is lower case⚠️⚠️**
-
+
3). Add the Notion API integration.
Click the right-top '...' -> connections -> connect to -> find the integration you created and connect it.
-
+
4). Publish the database to the public.
Click the 'Share' -> 'Publish' -> 'Publish' -> **copy the database id from the URL**.
-
+
### 2. Setting up the plugin in Obsidian
@@ -127,11 +127,11 @@ The basic information is identical to the general database and NotionNext databa
After adding the information, You can click `Add New Property` to add the properties you want to sync. There is no limit to the number of properties you can add.
-
+
**⚠️⚠️⚠️**: **`Title column` is the main property in the Notion database, which has the open button to open the underlying page.** You can select the type of all other properties. **⚠️⚠️⚠️**
-
+
According to the previously shown database, you can use `title` as the `Title column`, and `Tags` as the property 1.
@@ -157,7 +157,9 @@ This is a test file.
```
-
+After creating the note, you can click the `Share to NotionNext` button on the left sidebar to sync the note to Notion.
+
+
#### 2️⃣ note for NotionNext database
@@ -182,10 +184,10 @@ tags:
NotionID-pengjiaxin: 8ba573de-8fdf-4681-b063-c39d26e7860e
---
-this is a test file
+this is a test file
```
-
+
#### 3️⃣ note for custom database
@@ -193,7 +195,7 @@ this is a test file
Use the previously created general database and rename `title` to `Name` and `tags` to `Tags` in Notion.
-
+
The front matter for the custom database is as follows:
@@ -208,7 +210,7 @@ Tags:
This is a test file.
```
-
+
##### sync more properties
@@ -217,26 +219,33 @@ Add more property to the custom database. For example, we can add a `summary` an
1). Click `Edit` in the plugin settings.

2). Click `Add` and add the `summary` and `date` property.
-
+
+
+
3). After adding the properties, you can see the properties in the plugin settings.

4). Add the `summary` and `date` in Notion
-
- 5). Create a new note with the `summary` and `date` property.
- ```markdown
- ---
- Name: test-custom-more
- Tags:
- - test
- - web
- summary: this is a summary for test custom
- date: 2022-05-03
- ---
- This is a test file.
- ```
+ 
+
+ 5). Create a new note with the `summary` and `date` property.
+
+ ```markdown
+ ---
+ Name: test-custom-more
+ Tags:
+ - test
+ - web
+ summary: this is a summary for test custom
+ date: 2022-05-03
+ ---
+
+ This is a test file.
+ ```
+
6). Sync the note to Notion.
-
+
+ 
---