emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Kitchin <jkitchin@andrew.cmu.edu>
To: org-mode-email <emacs-orgmode@gnu.org>
Subject: loss of text properties in org-export--generate-copy-script
Date: Tue, 27 Nov 2018 13:21:57 -0500	[thread overview]
Message-ID: <CAJ51ETpwOgFG0iFSV90FKD9C4ypU653hvUhMsOUV_pSjgQTLDA@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1855 bytes --]

In the function org-export--generate-copy-script, the buffer contents are
copied over with buffer-substring-no-properties, so it appears that all
text properties are lost in the temporary copy.

I wondered why that is done?

I came across this because I was using text properties to find pieces of
text to modify before exporting in a org-export-before hook, but it doesn't
work since the text properties are gone.

The text properties are put on by font-lock. Curiously, if I add these
three lines

  (switch-to-buffer (current-buffer))
  (sem-mode 1)  # refontifies buffer
  (message-box "")

then the text-properties are put back on and I can find them again. If
leave the first or last line off though, this does not work. The last line
is especially mystifying.

Here is a minimal example that shows the issue. When you run the src block,
the word red will be italicized, and when you export it red will be turned
into the word yellow. without the unintuitive switch-to-buffer and message
box lines though, you will get an error.

Any ideas on what is happening here?

# begin
This is red.


#+BEGIN_SRC emacs-lisp :results silent :exports none
(font-lock-add-keywords
 nil
 '(("red" 0 '(face italic changeme t))))


(defun preprocess (backend)
  (switch-to-buffer (current-buffer))
  (font-lock-add-keywords
   nil
   '(("red" 0 '(face italic changeme t))))
  (message-box "")
  (let* ((start (next-single-property-change (point) 'changeme))
(end (next-single-property-change start 'changeme)))
    (setf (buffer-substring start end) "yellow")))

(add-hook 'org-export-before-processing-hook 'preprocess nil t)
#+END_SRC

John

-----------------------------------
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu

[-- Attachment #2: Type: text/html, Size: 3175 bytes --]

             reply	other threads:[~2018-11-27 18:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-27 18:21 John Kitchin [this message]
2018-11-27 22:49 ` loss of text properties in org-export--generate-copy-script Nicolas Goaziou
2018-11-27 23:14   ` John Kitchin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJ51ETpwOgFG0iFSV90FKD9C4ypU653hvUhMsOUV_pSjgQTLDA@mail.gmail.com \
    --to=jkitchin@andrew.cmu.edu \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).