1
0
Fork 0

more genfiles cleanup

This commit is contained in:
Oscar Najera 2023-10-21 23:29:43 +02:00
parent bab87823e2
commit 45d9271165
1 changed files with 22 additions and 15 deletions

View File

@ -5,11 +5,29 @@
(with-current-buffer (find-file-noselect "/tmp/install-org.el")
(emacs-lisp-byte-compile-and-load))
(add-to-list 'load-path cv-cwd)
(use-package ox-hugo
:ensure t
:pin melpa
:after ox)
(require 'ox-moderncv)
(require 'ox-altacv)
(require 'ox-awesomecv)
(use-package ox-moderncv
:load-path cv-cwd
:init
(require 'ox-moderncv)
(require 'ox-altacv)
(require 'ox-awesomecv))
(defun export-latex (backend file)
(let ((workfile (concat cv-workdir file))
(outfile (concat cv-workdir file ".tex"))
(pdffile (concat cv-workdir file ".pdf")))
(message (format "%s exists: %s" workfile (file-exists-p workfile)))
(with-current-buffer
(find-file-noselect workfile)
(org-mode)
(org-export-to-file backend outfile)
(shell-command (format "lualatex %s" outfile) "*Messages*" "*Messages*")
(copy-file pdffile (concat cv-cwd "/doc/static/" (concat file ".pdf")) t))))
(let ((readme (concat cv-cwd "readme.org")))
(make-directory cv-workdir t)
@ -19,17 +37,6 @@
(org-babel-tangle)))
(copy-file (concat cv-cwd "doc/smile.png") cv-workdir t)
(defun export-latex (backend file)
(let ((workfile (concat cv-workdir file))
(outfile (concat cv-workdir file ".tex")))
(message (format "%s exists: %s" workfile (file-exists-p workfile)))
(find-file workfile)
(org-mode)
(org-export-to-file backend outfile)
(shell-command (format "lualatex %s" outfile) "*Messages*" "*Messages*")
(copy-file (concat file ".pdf") (concat cv-cwd "/doc/static/" (concat file ".pdf")) t)))
(make-directory (concat cwd "/doc/static/") t)
(export-latex 'altacv "altacv.org")
(export-latex 'moderncv "moderncv.org")