mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
The org-babal features of mermaid-mode itself don't seem to work, but the separate ob-mermaid does work.
23 lines
388 B
EmacsLisp
23 lines
388 B
EmacsLisp
;;; siren-ob-mermaid.el --- jimeh's Emacs Siren: ob-mermaid configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for ob-mermaid.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-org-mode)
|
|
|
|
(use-package ob-mermaid
|
|
:defer t
|
|
|
|
:hook
|
|
(org-mode . siren-ob-mermaid-setup)
|
|
|
|
:init
|
|
(defun siren-ob-mermaid-setup ()
|
|
(require 'ob-mermaid)))
|
|
|
|
(provide 'siren-ob-mermaid)
|
|
;;; siren-ob-mermaid.el ends here
|