We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4254adf commit 4315a02Copy full SHA for 4315a02
README.md
@@ -196,13 +196,13 @@ where nodes = 'tr.topic-list-item'
196
Capture the commit information from this page.
197
```sql
198
select
199
- case pick '.icon .octicon-file-text'
200
- when null then 'Folder'
201
- else 'File'
202
- end, --folder/file
203
- pick '.content a', --name
204
- pick '.message a', --comment
205
- pick '.age span' --date
+ case pick '.icon .octicon-file-text'
+ when null then 'Folder'
+ else 'File'
+ end as type, --folder/file
+ pick '.content a' as name, --name
+ pick '.message a' as comment, --comment
+ pick '.age span' as date --date
206
from download page 'https://github.com/bitsummation/pickaxe'
207
where nodes = 'table.files tr.js-navigation-item'
208
```
0 commit comments