Function: org-roam-graph--dot-option

org-roam-graph--dot-option is a byte-compiled function defined in org-roam-graph.el.

Signature

(org-roam-graph--dot-option OPTION &optional WRAP-KEY WRAP-VAL)

Documentation

Return dot string of form KEY=VAL for OPTION cons.

If WRAP-KEY is non-nil it wraps the KEY. If WRAP-VAL is non-nil it wraps the VAL.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-graph.el
(defun org-roam-graph--dot-option (option &optional wrap-key wrap-val)
  "Return dot string of form KEY=VAL for OPTION cons.
If WRAP-KEY is non-nil it wraps the KEY.
If WRAP-VAL is non-nil it wraps the VAL."
  (concat wrap-key (car option) wrap-key
          "="
          wrap-val (cdr option) wrap-val))