Variable: hyrolo-markdown-mode-hook
hyrolo-markdown-mode-hook is a variable defined in hyrolo.el.
Value
nil
Documentation
Hook run after entering hyrolo-markdown-mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;;###autoload
(define-derived-mode hyrolo-markdown-mode text-mode "Markdown"
"Major mode for editing Markdown files."
(hyrolo-install-markdown-mode)
(require 'markdown-mode)
;; Don't actually derive from `markdown-mode' to avoid its costly setup
;; but set its parent mode property to `markdown-mode' so `derived-mode-p' checks
;; will pass.
(put 'hyrolo-markdown-mode 'derived-mode-parent 'markdown-mode)
(when buffer-read-only
(when (or (not (hypb:buffer-file-name)) (file-writable-p (hypb:buffer-file-name)))
(setq-local buffer-read-only nil)))
;; Natural Markdown tab width
(setq tab-width 4)
;; Comments
(setq-local comment-start "<!-- ")
(setq-local comment-end " -->")
(setq-local comment-start-skip "<!--[ \t]*")
(setq-local comment-column 0)
(setq-local comment-auto-fill-only-comments nil)
(setq-local comment-use-syntax t)
;; Sentence
(setq-local sentence-end-base "[.?!…‽][]\"'”’)}»›*_`~]*")
(font-lock-mode -1) ;; Never font-lock in this mode to keep it fast
(if markdown-hide-markup
(add-to-invisibility-spec 'markdown-markup)
(remove-from-invisibility-spec 'markdown-markup))
;; For imenu support
(setq imenu-create-index-function
(if markdown-nested-imenu-heading-index
#'markdown-imenu-create-nested-index
#'markdown-imenu-create-flat-index))
;; Defun movement
(setq-local beginning-of-defun-function #'markdown-beginning-of-defun)
(setq-local end-of-defun-function #'markdown-end-of-defun)
;; Paragraph filling
(setq-local fill-paragraph-function #'markdown-fill-paragraph)
(setq-local paragraph-start
;; Should match start of lines that start or separate paragraphs
(mapconcat #'identity
'(
"\f" ; starts with a literal line-feed
"[ \t\f]*$" ; space-only line
"\\(?:[ \t]*>\\)+[ \t\f]*$"; empty line in blockquote
"[ \t]*[*+-][ \t]+" ; unordered list item
"[ \t]*\\(?:[0-9]+\\|#\\)\\.[ \t]+" ; ordered list item
"[ \t]*\\[\\S-*\\]:[ \t]+" ; link ref def
"[ \t]*:[ \t]+" ; definition
"^|" ; table or Pandoc line block
)
"\\|"))
(setq-local paragraph-separate
;; Should match lines that separate paragraphs without being
;; part of any paragraph:
(mapconcat #'identity
'("[ \t\f]*$" ; space-only line
"\\(?:[ \t]*>\\)+[ \t\f]*$"; empty line in blockquote
;; The following is not ideal, but the Fill customization
;; options really only handle paragraph-starting prefixes,
;; not paragraph-ending suffixes:
".* $" ; line ending in two spaces
"^#+"
"^\\(?: \\)?[-=]+[ \t]*$" ;; setext
"[ \t]*\\[\\^\\S-*\\]:[ \t]*$") ; just the start of a footnote def
"\\|"))
(setq-local adaptive-fill-first-line-regexp "\\`[ \t]*[A-Z]?>[ \t]*?\\'")
(setq-local adaptive-fill-regexp "\\s-*")
(setq-local adaptive-fill-function #'markdown-adaptive-fill-function)
(setq-local fill-forward-paragraph-function #'markdown-fill-forward-paragraph)
;; Markdown outlining setup
(setq-local hyrolo-entry-regexp "^\\(#+\\)\\([ \t\n\r]+\\)"
hyrolo-hdr-and-entry-regexp (concat hyrolo-hdr-prefix-regexp hyrolo-entry-regexp)
hyrolo-entry-group-number 1
;; `hyrolo-add' handles removing # prefix from
;; trailing-space grouping below
hyrolo-entry-trailing-space-group-number 2
outline-regexp (concat hyrolo-hdr-prefix-regexp "^\\(#+\\)\\([ \t\n\r]\\)")
outline-level #'hyrolo-outline-level)
;; Use ellipses for invisible text
(add-to-invisibility-spec '(outline . t))
;; Inhibiting line-breaking:
;; Separating out each condition into a separate function so that users can
;; override if desired (with remove-hook)
(add-hook 'fill-nobreak-predicate
#'markdown-line-is-reference-definition-p nil t)
(add-hook 'fill-nobreak-predicate
#'markdown-pipe-at-bol-p nil t)
;; Indentation
(setq-local indent-line-function markdown-indent-function)
(setq-local indent-region-function #'markdown--indent-region)
;; Electric quoting
(add-hook 'electric-quote-inhibit-functions
#'markdown--inhibit-electric-quote nil :local)
;; drag and drop handler
(setq-local dnd-protocol-alist (cons '("^file:///" . markdown--dnd-local-file-handler)
dnd-protocol-alist))
;; Make checkboxes buttons
(when markdown-make-gfm-checkboxes-buttons
(markdown-make-gfm-checkboxes-buttons (point-min) (point-max))
(add-hook 'after-change-functions #'markdown-gfm-checkbox-after-change-function t t)
(add-hook 'change-major-mode-hook #'markdown-remove-gfm-checkbox-overlays t t))
;; edit-indirect
(add-hook 'edit-indirect-after-commit-functions
#'markdown--edit-indirect-after-commit-function
nil 'local)
;; add live preview export hook
(add-hook 'after-save-hook #'markdown-live-preview-if-markdown t t)
(add-hook 'kill-buffer-hook #'markdown-live-preview-remove-on-kill t t)
;; Add a custom keymap for `visual-line-mode' so that activating
;; this minor mode does not override markdown-mode's keybindings.
;; FIXME: Probably `visual-line-mode' should take care of this.
(let ((oldmap (cdr (assoc 'visual-line-mode minor-mode-map-alist)))
(newmap (make-sparse-keymap)))
(set-keymap-parent newmap oldmap)
(define-key newmap [remap move-beginning-of-line] nil)
(define-key newmap [remap move-end-of-line] nil)
(make-local-variable 'minor-mode-overriding-map-alist)
(push `(visual-line-mode . ,newmap) minor-mode-overriding-map-alist))
;; Expose hidden text as move into it
(hyrolo-reveal-mode 1))