mirror of
https://gitlab.com/Titan-C/org-cv.git
synced 2024-11-15 02:58:29 +00:00
Add license, make a package, standardize name, obey linter
This commit is contained in:
parent
296058745e
commit
09d133489f
1 changed files with 57 additions and 18 deletions
|
@ -1,7 +1,37 @@
|
||||||
|
;;; ox-latex-cv.el --- LaTeX moderncv Back-End for Org Export Engine -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
;; Copyright (C) 2018 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
;; Author: Oscar Najera <hi AT oscarnajera.com DOT com>
|
||||||
|
;; Keywords: org, wp, tex
|
||||||
|
|
||||||
|
;; This file is not part of GNU Emacs.
|
||||||
|
|
||||||
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
|
;; it under the terms of the GNU General Public License as published by
|
||||||
|
;; the Free Software Foundation; either version 3, or (at your option)
|
||||||
|
;; any later version.
|
||||||
|
;;
|
||||||
|
;; This program is distributed in the hope that it will be useful,
|
||||||
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
;; GNU General Public License for more details.
|
||||||
|
;;
|
||||||
|
;; You should have received a copy of the GNU General Public License
|
||||||
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
||||||
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
;; Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
;;
|
||||||
|
;; This library implements a LaTeX moderncv back-end, derived from the
|
||||||
|
;; LaTeX one.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
(require 'cl-lib)
|
(require 'cl-lib)
|
||||||
(require 'ox-latex)
|
(require 'ox-latex)
|
||||||
|
|
||||||
;; Install a default set-up for Beamer export.
|
;; Install a default set-up for moderncv export.
|
||||||
(unless (assoc "orgcv" org-latex-classes)
|
(unless (assoc "orgcv" org-latex-classes)
|
||||||
(add-to-list 'org-latex-classes
|
(add-to-list 'org-latex-classes
|
||||||
'("orgcv"
|
'("orgcv"
|
||||||
|
@ -34,11 +64,13 @@
|
||||||
(:linkedin "LINKEDIN" nil nil parse)
|
(:linkedin "LINKEDIN" nil nil parse)
|
||||||
(:with-email nil "email" t t)
|
(:with-email nil "email" t t)
|
||||||
)
|
)
|
||||||
:translate-alist '((template . org-cv-template)
|
:translate-alist '((template . org-moderncv-template)
|
||||||
(headline . org-cv-headline)))
|
(headline . org-moderncv-headline)))
|
||||||
|
|
||||||
(defun org-cv--add-latex-newlines (string)
|
(defun org-moderncv--add-latex-newlines (string)
|
||||||
"Replace regular newlines with LaTeX newlines (i.e. `\\\\')"
|
"Replace regular newlines in STRING with LaTeX newlines.
|
||||||
|
|
||||||
|
(i.e. `\\\\')"
|
||||||
(let ((str (org-trim string)))
|
(let ((str (org-trim string)))
|
||||||
(when (org-string-nw-p str)
|
(when (org-string-nw-p str)
|
||||||
(concat (replace-regexp-in-string "\n" "\\\\\\\\\n" str) "\\\\"))))
|
(concat (replace-regexp-in-string "\n" "\\\\\\\\\n" str) "\\\\"))))
|
||||||
|
@ -46,9 +78,9 @@
|
||||||
;;;; Template
|
;;;; Template
|
||||||
;;
|
;;
|
||||||
;; Template used is similar to the one used in `latex' back-end,
|
;; Template used is similar to the one used in `latex' back-end,
|
||||||
;; excepted for the table of contents and Beamer themes.
|
;; excepted for the table of contents and moderncv themes.
|
||||||
|
|
||||||
(defun org-cv-template (contents info)
|
(defun org-moderncv-template (contents info)
|
||||||
"Return complete document string after LaTeX conversion.
|
"Return complete document string after LaTeX conversion.
|
||||||
CONTENTS is the transcoded contents string. INFO is a plist
|
CONTENTS is the transcoded contents string. INFO is a plist
|
||||||
holding export options."
|
holding export options."
|
||||||
|
@ -92,7 +124,7 @@ holding export options."
|
||||||
(when homepage (format "\\homepage{%s}\n" homepage)))
|
(when homepage (format "\\homepage{%s}\n" homepage)))
|
||||||
;; address
|
;; address
|
||||||
(let ((address (org-export-data (plist-get info :address) info)))
|
(let ((address (org-export-data (plist-get info :address) info)))
|
||||||
(when address (format "\\address{%s}\n" (org-cv--add-latex-newlines address))))
|
(when address (format "\\address{%s}\n" (org-moderncv--add-latex-newlines address))))
|
||||||
(mapconcat (lambda (social-network)
|
(mapconcat (lambda (social-network)
|
||||||
(let ((command (org-export-data (plist-get info
|
(let ((command (org-export-data (plist-get info
|
||||||
(car social-network))
|
(car social-network))
|
||||||
|
@ -147,8 +179,10 @@ holding export options."
|
||||||
"\\end{document}")))
|
"\\end{document}")))
|
||||||
|
|
||||||
|
|
||||||
(defun org-cv-timestamp-to-shortdate (date_str)
|
(defun org-moderncv-timestamp-to-shortdate (date_str)
|
||||||
"e.g. <2002-08-12 Mon> => Aug 2012"
|
"Format orgmode timestamp DATE_STR into a short form date.
|
||||||
|
|
||||||
|
e.g. <2002-08-12 Mon> => Aug 2012"
|
||||||
(let* ((abbreviate 't)
|
(let* ((abbreviate 't)
|
||||||
(dte (org-parse-time-string date_str))
|
(dte (org-parse-time-string date_str))
|
||||||
(month (nth 4 dte))
|
(month (nth 4 dte))
|
||||||
|
@ -157,7 +191,10 @@ holding export options."
|
||||||
" "
|
" "
|
||||||
(number-to-string year))))
|
(number-to-string year))))
|
||||||
|
|
||||||
(defun org-cv-cventry (headline contents info)
|
(defun org-moderncv--format-cventry (headline contents info)
|
||||||
|
"Format HEADLINE as as cventry.
|
||||||
|
CONTENTS holds the contents of the headline. INFO is a plist used
|
||||||
|
as a communication channel."
|
||||||
(let ((from-date (org-element-property :FROM headline))
|
(let ((from-date (org-element-property :FROM headline))
|
||||||
(to-date (org-element-property :TO headline))
|
(to-date (org-element-property :TO headline))
|
||||||
(title (org-export-data (org-element-property :title headline) info))
|
(title (org-export-data (org-element-property :title headline) info))
|
||||||
|
@ -165,23 +202,25 @@ holding export options."
|
||||||
(location (or (org-element-property :LOCATION headline) ""))
|
(location (or (org-element-property :LOCATION headline) ""))
|
||||||
(note (or (org-element-property :NOTE headline) "")))
|
(note (or (org-element-property :NOTE headline) "")))
|
||||||
(format "\\cventry{\\textbf{%s}}{%s}{%s}{%s}{%s}{%s}\n"
|
(format "\\cventry{\\textbf{%s}}{%s}{%s}{%s}{%s}{%s}\n"
|
||||||
(concat (org-cv-timestamp-to-shortdate from-date)
|
(concat (org-moderncv-timestamp-to-shortdate from-date)
|
||||||
" -- "
|
" -- "
|
||||||
(org-cv-timestamp-to-shortdate to-date))
|
(org-moderncv-timestamp-to-shortdate to-date))
|
||||||
title employer location note contents)))
|
title employer location note contents)))
|
||||||
|
|
||||||
|
|
||||||
;;;; Headline
|
;;;; Headline
|
||||||
(defun org-cv-headline (headline contents info)
|
(defun org-moderncv-headline (headline contents info)
|
||||||
"Transcode HEADLINE element into Beamer code.
|
"Transcode HEADLINE element into moderncv code.
|
||||||
CONTENTS is the contents of the headline. INFO is a plist used
|
CONTENTS is the contents of the headline. INFO is a plist used
|
||||||
as a communication channel."
|
as a communication channel."
|
||||||
(unless (org-element-property :footnote-section-p headline)
|
(unless (org-element-property :footnote-section-p headline)
|
||||||
(let ((tags (org-export-get-tags headline info))
|
(let ((environment (let ((env (org-element-property :CV_ENV headline)))
|
||||||
(environment (let ((env (org-element-property :CV_ENV headline)))
|
|
||||||
(or (org-string-nw-p env) "block"))))
|
(or (org-string-nw-p env) "block"))))
|
||||||
(cond
|
(cond
|
||||||
;; is a cv entry
|
;; is a cv entry
|
||||||
((equal environment "cventry")
|
((equal environment "cventry")
|
||||||
(org-cv-cventry headline contents info))
|
(org-moderncv--format-cventry headline contents info))
|
||||||
((org-export-with-backend 'latex headline contents info))))))
|
((org-export-with-backend 'latex headline contents info))))))
|
||||||
|
|
||||||
|
(provide 'ox-moderncv)
|
||||||
|
;;; ox-moderncv ends here
|
Loading…
Reference in a new issue