alphapapa / ement.el

A Matrix client for GNU Emacs
GNU General Public License v3.0
476 stars 44 forks source link

Prevent Org from interpreting underscores as subscript #217

Closed alphapapa closed 9 months ago

alphapapa commented 9 months ago

@phil-s showed this:

;; Prevent '_' and '^' from causing sub- and super-scripts in exported HTML.
(define-advice ement-room-send-org-filter (:around (orig-fun content room) my-export)
  "Tweak the org-mode export settings."
  (let ((org-export-with-sub-superscripts nil))
    (funcall orig-fun content room))) 

I should just set that variable directly.