-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: show how to qualify a field as URL
- Loading branch information
DE MERINGO Olivier
committed
Jun 11, 2024
1 parent
dcbe113
commit a45d63b
Showing
4 changed files
with
90 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
|
||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
|
||
|
||
<h1>The content of the tool repository</h1> | ||
<!-- DATAMI - contribute with GIT ...but without minding it --> | ||
<!-- An open source widget coded with 🤍 by the tech cooperative multi : https://multi.coop --> | ||
|
||
<!-- DATAMI WIDGET'S HTML BLOCK --> | ||
<datami-file | ||
title="Tools" | ||
gitfile="https://github.com/Boavizta/ict-sustainability-tools/blob/main/ictst/data/tools.csv" | ||
options='{ | ||
"schema": { | ||
"file": "https://github.com/Boavizta/ict-sustainability-tools/blob/main/ictst/model/tools.frictionless-table-schema.json" | ||
}, | ||
"fields-custom-properties": { | ||
"fields": [ | ||
{ | ||
"name": "name", | ||
"sticky": true, | ||
"primaryKey": true, | ||
"maxLength": 50 | ||
}, | ||
{ | ||
"name": "organization" | ||
}, | ||
{ | ||
"name": "website", | ||
"subtype": "link" | ||
} | ||
] | ||
} | ||
}' | ||
usertoken='<A_GITHUB_PAT>' | ||
locale="en" | ||
> | ||
</datami-file> | ||
|
||
<!-- DATAMI WIDGET'S APP.JS SCRIPT --> | ||
<script src="https://datami-widget.multi.coop/js/app.js" type="text/javascript" defer></script> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,10 @@ | |
}, | ||
{ | ||
"name": "organization" | ||
}, | ||
{ | ||
"name": "website", | ||
"subtype": "link" | ||
} | ||
] | ||
} | ||
|