mikf / gallery-dl

Command-line program to download image galleries and collections from several image hosting sites
GNU General Public License v2.0
10.84k stars 889 forks source link

[kemono.party] text posts with embedded links(?) #1839

Closed Doofy420 closed 2 years ago

Doofy420 commented 2 years ago

gallery-dl doesn't include links found in posts like these it seems https://kemono.party/patreon/user/31259156/post/47750459

all I get is a blank text file, doing the method described in #1278

mikf commented 2 years ago

If you just want that link added to the content.txt text file, modify the format setting to also include the embed field. For example

    "format": "{content}\n{embed}\n"

or for just the URL

    "format": "{content}\n{embed[url]:?/\n/}"
Doofy420 commented 2 years ago

works great, thanks!