Function: eww-up-url

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

Signature

(eww-up-url)

Documentation

Go to the page marked up.

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

Key Bindings

Source Code

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