Function: eww-parse-target

eww-parse-target is a byte-compiled function defined in eww.el.gz.

Signature

(eww-parse-target TARGET)

Documentation

Separate TARGET from its optional text fragments.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-parse-target (target)
  "Separate TARGET from its optional text fragments."
  (when (stringp target)
    (string-match "\\([^:]*\\)\\(:~:\\)?\\(.*\\)" target)
    (cons (match-string 1 target) (match-string 3 target))))