Compare commits

..

No commits in common. "d0b126ec54d5ac9d57aacabfcc629957c0b8d604" and "dbda1928cecb22d6228e9d87f16e067b1c850c37" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -2867,8 +2867,7 @@ eventuelly be set to nil, however)."
:commands (markdown-mode) :commands (markdown-mode)
:init (progn :init (progn
(setq markdown-use-pandoc-style-yaml-metadata t (setq markdown-use-pandoc-style-yaml-metadata t
markdown-command "pandoc --standalone --toc" markdown-command "pandoc --standalone")
markdown-fontify-code-blocks-natively t)
(fset 'markdown-output-standalone-p #'(lambda () t)) (fset 'markdown-output-standalone-p #'(lambda () t))
(add-hook 'markdown-mode-hook #'turn-off-auto-fill) (add-hook 'markdown-mode-hook #'turn-off-auto-fill)
(add-hook 'markdown-mode-hook #'turn-on-visual-line-mode))) (add-hook 'markdown-mode-hook #'turn-on-visual-line-mode)))

View File

@ -1344,7 +1344,7 @@ inserting the checklist."
(ts-active :to ,(ts-now)))))) (ts-active :to ,(ts-now))))))
(insert "Concurrent DATEs:\n") (insert "Concurrent DATEs:\n")
(dolist (date concurrent-dates) (dolist (date concurrent-dates)
(insert "- " (org-link-make-string (format "id:%s" (cdr date)) (car date)) "\n")) (insert "- " (org-link-make-string (cdr date) (car date)) "\n"))
(insert "\n")) (insert "\n"))
;; Insert relevant backlinks, when available. ;; Insert relevant backlinks, when available.