mirror of
https://github.com/kemayo/leech
synced 2025-12-06 16:33:16 +01:00
Include some examples for the arbitrary handler
This commit is contained in:
parent
257ab69394
commit
df8e67d3e1
6 changed files with 40 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
*.epub
|
*.epub
|
||||||
*.mobi
|
*.mobi
|
||||||
*.json
|
./*.json
|
||||||
leech.db
|
leech.db
|
||||||
leech.sqlite
|
leech.sqlite
|
||||||
leech.cookies
|
leech.cookies
|
||||||
|
|
|
||||||
7
examples/deathworlders.json
Normal file
7
examples/deathworlders.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"url": "http://hfy-archive.org/book/deathworlders/chapter-01-kevin-jenkins-experience",
|
||||||
|
"title": "Deathworlders",
|
||||||
|
"author": "Philip Richard Johnson, AKA Hambone",
|
||||||
|
"chapter_selector": "#block-book-navigation .menu a",
|
||||||
|
"content_selector": "article .node-content .field-name-body .field-item"
|
||||||
|
}
|
||||||
8
examples/heretical-edge.json
Normal file
8
examples/heretical-edge.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"url": "https://ceruleanscrawling.wordpress.com/table-of-contents/",
|
||||||
|
"title": "Heretical Edge",
|
||||||
|
"author": "Ceruelean",
|
||||||
|
"chapter_selector": "article .entry-content > p > a",
|
||||||
|
"content_selector": "article .entry-content",
|
||||||
|
"filter_selector": ".sharedaddy, .wpcnt, style"
|
||||||
|
}
|
||||||
8
examples/practical1.json
Normal file
8
examples/practical1.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
|
||||||
|
"title": "A Practical Guide To Evil: Book 1",
|
||||||
|
"author": "erraticerrata",
|
||||||
|
"chapter_selector": "#main .entry-content > ul:nth-of-type(1) > li > a",
|
||||||
|
"content_selector": "#main .entry-content",
|
||||||
|
"filter_selector": ".sharedaddy, .wpcnt, style"
|
||||||
|
}
|
||||||
8
examples/practical2.json
Normal file
8
examples/practical2.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
|
||||||
|
"title": "A Practical Guide To Evil: Book 2",
|
||||||
|
"author": "erraticerrata",
|
||||||
|
"chapter_selector": "#main .entry-content > ul:nth-of-type(2) > li > ul > li > a",
|
||||||
|
"content_selector": "#main .entry-content",
|
||||||
|
"filter_selector": ".sharedaddy, .wpcnt, style"
|
||||||
|
}
|
||||||
8
examples/practical3.json
Normal file
8
examples/practical3.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
|
||||||
|
"title": "A Practical Guide To Evil: Book 3",
|
||||||
|
"author": "erraticerrata",
|
||||||
|
"chapter_selector": "#main .entry-content > ul:nth-of-type(3) > li > a",
|
||||||
|
"content_selector": "#main .entry-content",
|
||||||
|
"filter_selector": ".sharedaddy, .wpcnt, style"
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue