Org-mode DateTime Format
Summary
Org-Mode では C-c . で日付が入力できる。
英語のフォーマットにするには下記を記載する
(set-locale-environment "C")
また orgファイルの頭に下記を記載すると括弧を取り除いてからexportすることができる
#+BIND: org-export-filter-timestamp-functions (tmp-f-timestamp)
#+BIND: org-export-filter-strike-through-functions (tmp-f-strike-through)
#+BEGIN_SRC emacs-lisp :exports results :results none
(setq-local org-export-allow-bind-keywords t)
(defun tmp-f-timestamp (s backend info)
(replace-regexp-in-string "&[lg]t;¥¥|[][]" "" s))
(defun tmp-f-strike-through (s backend info) "")