Ho avuto un problema simile, quindi forse questo mi aiuterà - non ho molta familiarità con l'esportazione dell'org o interni dell'org, ma non sono riuscito a trovare nulla che possa analizzare un file org in una struttura ad albero. Ma dato un buffer simile
* england
** london
** bristol
* france
ti darà
(org-get-header-tree) => ("england" ("london" "bristol") "france")
e può includere anche altre informazioni dall'albero.
Quindi, dato un elenco semplice di livelli, dobbiamo produrre un albero, ad es. (1 1 2 3 1) => (1 1 (2 (3)) 1). Non sono riuscito a trovare una funzione che lo farebbe, così ne ho scritto uno dopo aver disegnato molte celle contro - sono sicuro che c'è un modo migliore per farlo ma funziona. La funzione unflatten
accetta un elenco semplice e un paio di funzioni per estrarre le informazioni desiderate dall'elenco e dai livelli degli elementi e produce una struttura ad albero.
In org-get-header-list
si potrebbe aggiungere ulteriori informazioni che si desidera estrarre da ogni voce con chiamate a org-element-property
, e poi in org-get-header-tree
si potrebbe includere funzioni per estrarre le informazioni dalla lista.
Allo stato attuale ciò non include la gestione delle dashboard, ma forse potrebbe essere adattato per gestirle anche senza troppi problemi ...
(defun unflatten (xs &optional fn-value fn-level)
"Unflatten a list XS into a tree, e.g. (1 2 3 1) => (1 (2 (3)) 1).
FN-VALUE specifies how to extract the values from each element, which
are included in the output tree, FN-LEVEL tells how to extract the
level of each element. By default these are the `identity' function so
it will work on a list of numbers."
(let* ((level 1)
(tree (cons nil nil))
(start tree)
(stack nil)
(fn-value (or fn-value #'identity))
(fn-level (or fn-level #'identity)))
(dolist (x xs)
(let ((x-value (funcall fn-value x))
(x-level (funcall fn-level x)))
(cond ((> x-level level)
(setcdr tree (cons (cons x-value nil) nil))
(setq tree (cdr tree))
(push tree stack)
(setq tree (car tree))
(setq level x-level))
((= x-level level)
(setcdr tree (cons x-value nil))
(setq tree (cdr tree)))
((< x-level level)
(while (< x-level level)
(setq tree (pop stack))
(setq level (- level 1)))
(setcdr tree (cons x-value nil))
(setq tree (cdr tree))
(setq level x-level)))))
(cdr start)))
; eg (unflatten '(1 2 3 2 3 4)) => '(1 (2 (3) 2 (3 (4))))
(defun org-get-header-list (&optional buffer)
"Get the headers of an org buffer as a flat list of headers and levels.
Buffer will default to the current buffer."
(interactive)
(with-current-buffer (or buffer (current-buffer))
(let ((tree (org-element-parse-buffer 'headline)))
(org-element-map
tree
'headline
(lambda (el) (list
(org-element-property :raw-value el) ; get header title without tags etc
(org-element-property :level el) ; get depth
;; >> could add other properties here
))))))
; eg (org-get-header-list) => (("pok" 1) ("lkm" 1) (("cedar" 2) ("yr" 2)) ("kjn" 1))
(defun org-get-header-tree (&optional buffer)
"Get the headers of the given org buffer as a tree."
(interactive)
(let* ((headers (org-get-header-list buffer))
(header-tree (unflatten headers
(lambda (hl) (car hl)) ; extract information to include in tree
(lambda (hl) (cadr hl))))) ; extract item level
header-tree))
; eg (org-get-header-tree) => ("pok" "lkm" ("cedar" "yr") "kjn")
no-recursion
diorg-element-map
dovrebbe fare quello che vuoi.