"Rick R" <[EMAIL PROTECTED]> writes:

> I invoke this as such:
> ./elinks -config-file ./elinks.conf -dump -dump-charset utf8
> -dump-color-mode  0 ./test_fr.html > out/test_fr.txt

-config-file must be relative to -config-dir.
So this normally reads ~/.elinks/./elinks.conf, not $PWD/elinks.conf.
I don't know whether that is a bug or a feature.
Anyway, you could try this instead:

./elinks -no-home -eval 'set document.codepage.assume = "utf8"' \
        -eval 'set document.codepage.force_assumed = 1' \
        -dump -dump-charset utf8 -dump-color-mode 0 \
        ./test_fr.html > out/test_fr.txt
_______________________________________________
elinks-users mailing list
[email protected]
http://linuxfromscratch.org/mailman/listinfo/elinks-users

Reply via email to