adding some tweaks to a lot of things

This commit is contained in:
Chris Cochrun 2025-01-08 09:50:39 -06:00
parent fdb4c2ecc8
commit 0394d80a50
5 changed files with 320 additions and 33 deletions

View file

@ -84,3 +84,12 @@
;; nil
;; :global t
;; :lighter " bible")
(defun org-bible-from-xml ()
"Get the bible from xml and render as org buffer"
(interactive)
(let ((bible (xml-parse-file "~/docs/bibles/engwebu_usfx.xml")))
(with-current-buffer (get-buffer-create "*web-bible*")
(insert (string bible))
(insert "hello")
(save-buffer))))