Hello,
Thanks for your "neat trick" to keep articles to read later, I do find
it useful.
In order to keep articles found on my smartphone, I use Markor (notes
taking app) to write down links in a file. The links are markdown formatted.
This file is synced with my laptop through syncthing.
On my laptop, I use following command to import links in offpunk. It
gets rid of markdown formatting and throws the links to offpunk with
your "--fetch-later" option :
cat '/path/to/file/toread.md' | grep -o \(.*\) | cut -c2- | sed 's/
)//' | xargs offpunk --fetch-later
That’s a way to have links from android to laptop, without any server
(pocket or wallabag)
YG