Function: eww-next-url

eww-next-url is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-next-url)

Documentation

Go to the page marked next.

A page is marked next if rel="next" appears in a <link> or <a> tag.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-next-url ()
  "Go to the page marked `next'.
A page is marked `next' if rel=\"next\" appears in a <link>
or <a> tag."
  (interactive nil eww-mode)
  (if (plist-get eww-data :next)
      (eww-browse-url (shr-expand-url (plist-get eww-data :next)
				      (plist-get eww-data :url)))
    (user-error "No `next' on this page")))