added function for org macros

This commit is contained in:
Phuntsok Drak-pa 2019-08-13 16:39:23 +02:00
parent d8a4a5a274
commit 845b6cfd7a
1 changed files with 125 additions and 103 deletions

228
funcs.el
View File

@ -9,111 +9,111 @@
;; ;;
;;; License: GPLv3 ;;; License: GPLv3
(setq conlanging//matter-latin-to-runes '((", *" . "") (setq conlanging//matter-latin-to-runes '((", *" . "")
("\\. *" . "") ("\\. *" . "")
(" +" . "") (" +" . "")
("ċ" . "") ("ċ" . "")
("ch" . "") ("ch" . "")
("ae" . "") ("ae" . "")
("æ" . "") ("æ" . "")
("dh" . "") ("dh" . "")
("z" . "") ("z" . "")
("ð" . "") ("ð" . "")
("th" . "") ("th" . "")
("s" . "") ("s" . "")
("þ" . "") ("þ" . "")
("w" . "") ("w" . "")
("ƿ" . "") ("ƿ" . "")
("g" . "") ("g" . "")
("" . "") ("" . "")
("ea" . "") ("ea" . "")
("f" . "") ("f" . "")
("u" . "") ("u" . "")
("o" . "") ("o" . "")
("r" . "") ("r" . "")
("c" . "") ("c" . "")
("h" . "") ("h" . "")
("n" . "") ("n" . "")
("i" . "") ("i" . "")
("j" . "") ("j" . "")
("p" . "") ("p" . "")
("v" . "") ("v" . "")
("t" . "") ("t" . "")
("b" . "") ("b" . "")
("e" . "") ("e" . "")
("m" . "") ("m" . "")
("l" . "") ("l" . "")
("d" . "") ("d" . "")
("é" . "") ("é" . "")
("a" . "") ("a" . "")
("y" . ""))) ("y" . "")))
(setq conlanging//matter-latin-to-native '((" +" . " ") (setq conlanging//matter-latin-to-native '((" +" . " ")
("ch" . "ċ") ("ch" . "ċ")
("ae" . "æ") ("ae" . "æ")
("th" . "þ") ("th" . "þ")
("s" . "þ") ("s" . "þ")
("dh" . "ð") ("dh" . "ð")
("z" . "ð") ("z" . "ð")
("w" . "ƿ") ("w" . "ƿ")
("j" . "i"))) ("j" . "i")))
(setq conlanging//matter-latin-to-latex-runes '((", *" . ":") (setq conlanging//matter-latin-to-latex '((", *" . ":")
("\\. *" . "*") ("\\. *" . "*")
(" +" . ".") (" +" . ".")
("ch" . "I") ("ch" . "I")
("ċ" . "I") ("ċ" . "I")
("ae" . "æ") ("ae" . "æ")
("ea" . "\\\\ea") ("ea" . "\\\\ea")
("ƿ" . "w") ("ƿ" . "w")
("dh" . "s") ("dh" . "s")
("z" . "s") ("z" . "s")
("ð" . "s") ("ð" . "s")
("th" . "þ") ("th" . "þ")
("s" . "þ") ("s" . "þ")
("v" . "\\\\ng") ("v" . "\\\\ng")
("é " . "\\\\oe"))) ("é " . "\\\\oe")))
(setq conlanging//einnlanda-latin-to-latex '((", *" . "\\\\tripledot") (setq conlanging//einnlanda-latin-to-latex '((", *" . "\\\\tripledot")
("\\. *" . "\\\\tripledot") ("\\. *" . "\\\\tripledot")
(" +" . ":") (" +" . ":")
("hw" . "x") ("hw" . "x")
("ø" . "\\\\o") ("ø" . "\\\\o")
("ö" . "\\\\oO") ("ö" . "\\\\oO")
("ó" . "v") ("ó" . "v")
("ń" . "\\\\ndot") ("ń" . "\\\\ndot")
("v" . "b"))) ("v" . "b")))
(setq conlanging//einnlanda-latin-to-runes '((", *" . "") (setq conlanging//einnlanda-latin-to-runes '((", *" . "")
("\\. *" . "") ("\\. *" . "")
(" +" . "") (" +" . "")
("hw" . "") ("hw" . "")
("i" . "") ("i" . "")
("j" . "") ("j" . "")
("y" . "") ("y" . "")
("u" . "") ("u" . "")
("e" . "") ("e" . "")
("ø" . "") ("ø" . "")
("o" . "") ("o" . "")
("ö" . "") ("ö" . "")
("ó" . "") ("ó" . "")
("æ" . "") ("æ" . "")
("a" . "") ("a" . "")
("m" . "") ("m" . "")
("n" . "") ("n" . "")
("ń" . "") ("ń" . "")
("p" . "") ("p" . "")
("b" . "") ("b" . "")
("t" . "") ("t" . "")
("d" . "") ("d" . "")
("k" . "") ("k" . "")
("g" . "") ("g" . "")
("f" . "") ("f" . "")
("v" . "") ("v" . "")
("þ" . "") ("þ" . "")
("ð" . "") ("ð" . "")
("s" . "") ("s" . "")
("h" . "") ("h" . "")
("w" . "") ("w" . "")
("r" . "") ("r" . "")
("l" . ""))) ("l" . "")))
(defun conlanging//replace-string-by-char (t-string t-correspondance-table) (defun conlanging//replace-string-by-char (t-string t-correspondance-table)
"Return a copy of t-string converted with the correspondance "Return a copy of t-string converted with the correspondance
@ -159,30 +159,52 @@ with."
; Mattér ; ; Mattér ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun conlanging/matter-to-runes () (defun conlanging/matter-to-runes ()
"Replaces transliterated Mattér to its runic writing system" "Replaces transliterated Mattér with its runic writing system"
(interactive) (interactive)
(conlanging//replace-char-by-table conlanging//matter-latin-to-runes)) (conlanging//replace-char-by-table conlanging//matter-latin-to-runes))
(defun conlanging/matter-to-native-latin () (defun conlanging/matter-to-native-latin ()
"Replaces transliterated Mattér by its corresponding native "Replaces transliterated Mattér with its corresponding native
latin writing system" latin writing system"
(interactive) (interactive)
(conlanging//replace-char-by-table conlanging//matter-latin-to-native)) (conlanging//replace-char-by-table conlanging//matter-latin-to-native))
(defun conlanging/matter-to-latex () (defun conlanging/matter-to-latex ()
"Replaces transliterated Mattér by its corresponding runes" "Replaces transliterated Mattér with its corresponding runes"
(interactive) (interactive)
(conlanging//replace-char-by-table conlanging//matter-latin-to-latex-runes)) (conlanging//replace-char-by-table conlanging//matter-latin-to-latex))
(defun conlanging/matter-org-export-runes (text)
"Replaces transliterated Mattér with its corresponding runes during org-mode
export"
(interactive)
(if (org-export-derived-backend-p org-export-current-backend
'latex)
(concat "\\textarm{"
(conlanging//replace-string-by-char text conlanging//matter-latin-to-latex)
"}")
(conlanging//replace-string-by-char text conlanging//matter-latin-to-runes)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Einnlanda ; ; Einnlanda ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun conlanging/einnlanda-to-runes () (defun conlanging/einnlanda-to-runes ()
"Replaces transliterated Mattér to its runic writing system" "Replaces transliterated Einnlandic with its runic writing system"
(interactive) (interactive)
(conlanging//replace-char-by-table conlanging//einnlanda-latin-to-runes)) (conlanging//replace-char-by-table conlanging//einnlanda-latin-to-runes))
(defun conlanging/einnlanda-to-latex () (defun conlanging/einnlanda-to-latex ()
"Replaces transliterated Mattér by its corresponding runes" "Replaces transliterated Einnlandic with its corresponding runes"
(interactive) (interactive)
(conlanging//replace-char-by-table conlanging//einnlanda-latin-to-latex-runes)) (conlanging//replace-char-by-table conlanging//einnlanda-latin-to-latex))
(defun conlanging/einnlanda-org-export-runes (text)
"Replaces transliterated Einnlandic with its corresponding runes during
org-mode export"
(interactive)
(if (org-export-derived-backend-p org-export-current-backend
'latex)
(concat "\\textarm{"
(conlanging//replace-string-by-char text conlanging//einnlanda-latin-to-latex)
"}")
(conlanging//replace-string-by-char text conlanging//einnlanda-latin-to-runes)))