Hi! The following command:
~/apps/lynx-beta/bin/lynx https://www.shlomifish.org/philosophy/philosophy/putting-cards-on-the-table-2019-2020/index.xhtml does not display most of the page's main text which is: 1. XHTML5. 2. validates as XHTML by the W3C validator 3. Has an ".xhtml" extension. firefox and chromium render it fine. I built that lynx using https://github.com/shlomif/shlomif-computer-settings/blob/master/shlomif-settings/build-scripts/build/lynx.sh : ____ #! /bin/sh # # lynx.sh # # Based on the Fedora lynx .src.rpm : # https://src.fedoraproject.org/rpms/lynx/ # # Thanks! # ../configure --prefix="$HOME/apps/lynx-beta" --with-gnutls # --with-nss-compat # --with-ssl if test "0" = "1" then export LIBS="-lgnutls -lssl -lcrypto" export LDFLAGS="$LIBS" fi prefix="$HOME/apps/lynx-beta" build() { script="$1" shift "$script" --prefix="$prefix" \ --disable-font-switch \ --disable-rpath-hack \ --enable-addrlist-page \ --enable-charset-choice \ --enable-cgi-links \ --enable-cjk \ --enable-debug \ --enable-default-colors \ --enable-externs \ --enable-file-upload \ --enable-internal-links \ --enable-ipv6 \ --enable-japanese-utf8 \ --enable-justify-elts \ --enable-kbd-layout \ --enable-libjs \ --enable-nsl-fork \ --enable-persistent-cookies \ --enable-prettysrc \ --enable-read-eta \ --enable-scrollbar \ --enable-source-cache \ --enable-warnings \ --with-ssl \ --with-zlib \ && make -j1 install } rm -fr "$prefix" if test "$1" = "o" then src="`pwd`" dir="../todel-lynx-build" rm -fr "$dir" mkdir -p "$dir" cd "$dir" build "$src/configure" else build "./configure" fi ____ based on: ____ drwxr-xr-x 13 shlomif shlomif 4096 Feb 17 10:46 /home/shlomif/lynx2.9.2 -rw-r--r-- 1 shlomif shlomif 2783769 Feb 17 10:38 /home/shlomif/lynx-cur.tar.bz2 7374b89936d991669e101f4e97f2c9592036e1e8cdaa7bafc259a77ab6fb07ce /home/shlomif/lynx-cur.tar.bz2 ____ -- Shlomi Fish https://www.shlomifish.org/ Things will always go wrong, even if they cannot. Please reply to list if it's a mailing list post - http://shlom.in/reply .