Function: eww-previous-url
eww-previous-url is an interactive and byte-compiled function defined
in eww.el.gz.
Signature
(eww-previous-url)
Documentation
Go to the page marked previous.
A page is marked previous if rel="previous" appears in a <link>
or <a> tag.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-previous-url ()
"Go to the page marked `previous'.
A page is marked `previous' if rel=\"previous\" appears in a <link>
or <a> tag."
(interactive nil eww-mode)
(if (plist-get eww-data :previous)
(eww-browse-url (shr-expand-url (plist-get eww-data :previous)
(plist-get eww-data :url)))
(user-error "No `previous' on this page")))