Threatthriver commited on
Commit
c3f6ae4
1 Parent(s): b85faf5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
README.md CHANGED
@@ -22,14 +22,18 @@ The dataset is stored in a JSON file named scraped_data.json. Each entry in the
22
  * title: The title of the web page.
23
  * paragraphs: A list of paragraphs extracted from the web page.
24
  ### Example Entry
25
- json {
26
- "url": "https://example.com/article",
27
- "title": "Example Article Title",
28
- "paragraphs": [
29
- "This is the first paragraph of the article.",
30
- "This is the second paragraph of the article.",
31
- // More paragraphs...
32
- ]
 
 
 
 
33
  }
34
  ## How to Use Load the Dataset
35
  You can load the JSON file using standard Python libraries such as json or use data processing libraries like pandas.
 
22
  * title: The title of the web page.
23
  * paragraphs: A list of paragraphs extracted from the web page.
24
  ### Example Entry
25
+
26
+ ```json
27
+ {
28
+ "url": "https://example.com/article",
29
+ "title": "Example Article Title",
30
+ "paragraphs": [
31
+ "This is the first paragraph of the article.",
32
+ "This is the second paragraph of the article.",
33
+ // More paragraphs...
34
+ ]
35
+ }
36
+ ```
37
  }
38
  ## How to Use Load the Dataset
39
  You can load the JSON file using standard Python libraries such as json or use data processing libraries like pandas.