-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblocks.config.json
More file actions
28 lines (28 loc) · 831 Bytes
/
blocks.config.json
File metadata and controls
28 lines (28 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[
{
"type": "file",
"id": "observable-file-block",
"title": "ObservableJS File Block",
"description": "ObservableJS file block - supporting .ojs, .omd and .ojsnb files.",
"entry": "blocks/observable-file-block/index.tsx",
"matches": [
"*.ojs",
"*.omd",
"*.ojsnb"
],
"example_path": "https://github.com/GordonSmith/blocks/blob/main/samples/Recommended%20Libraries.omd"
},
{
"type": "file",
"id": "data-file-block",
"title": "Data File Preview",
"description": "Data preview block - supporting .csv, .json and .parquet files.",
"entry": "blocks/data-file-block/index.tsx",
"matches": [
"*.csv",
"*.json",
"*.parquet"
],
"example_path": "https://github.com/GordonSmith/blocks/blob/main/samples/Recommended%20Libraries.omd"
}
]