Allow ="foo"= to be exported as code.
only passes the buffer position in bytes (or maybe characters),
whereas R's srcrefs work with lines and columns.
* OPEN #4 multibyte characters corrupt slime connection :NORMAL:
- Not in all circumstances (e.g. "£" is OK) but 1:£ fails in
+ Not in all circumstances (e.g. ="£"= is OK) but =1:£= fails in
slime-net-read-or-lose.
* COMMENT:
Local Variables:
scp $(WEBFILES) common-lisp.net:public_html/swankr/
README.html: README
- emacs --batch --visit README --eval '(org-export-as-html nil)'
+ emacs --batch --visit README --load org-export.el
%.html: %.org
- emacs --batch --visit $^ --eval '(org-export-as-html nil)'
+ emacs --batch --visit $^ --load org-export.el
clean:
-rm $(WEBFILES)
--- /dev/null
+(let* ((orig org-emphasis-regexp-components)
+ (new `(,(nth 0 orig) ,(nth 1 orig) ,(remove ?\" (nth 2 orig))
+ ,(nth 3 orig) ,(nth 4 orig) ,(nth 5 orig))))
+ (org-set-emph-re 'org-emphasis-regexp-components new)
+ (org-export-as-html nil))