Function: org-publish--expand-file-name

org-publish--expand-file-name is a byte-compiled function defined in ox-publish.el.gz.

Signature

(org-publish--expand-file-name FILE PROJECT)

Documentation

Return full file name for FILE in PROJECT.

When FILE is a relative file name, it is expanded according to project base directory.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
(defun org-publish--expand-file-name (file project)
  "Return full file name for FILE in PROJECT.
When FILE is a relative file name, it is expanded according to
project base directory."
  (if (file-name-absolute-p file) file
    (expand-file-name file (org-publish-property :base-directory project))))