Table results doesn't work for dotted lists

2019-12-24 Thread Lawrence Bottorff
I've got this #+begin_src emacs-lisp :results table '(hline (hi) (there) hline) #+end_src #+RESULTS: |---| | hi| | there | |---| but then :results table has no effect on this #+begin_src emacs-lisp :results table '(hline (hi . bye) (here . there) hline) #+end_src #+RESULTS: :

Re: problem with org-toggle-inline-images

2019-12-24 Thread briangpowell .
I use iimage-mode Have you tried iimage-mode? Notice the 2 i's in iimage Toggling works great with iimage-mode On Tue, Dec 24, 2019 at 8:09 AM Johannes Brauer wrote: > It seems that the problem arised since I’ve upgraded orgmode from version > 9.2.6 (9.2.6-4-ge30905-elpa to version 9.3

Re: problem with org-toggle-inline-images

2019-12-24 Thread Johannes Brauer
It seems that the problem arised since I’ve upgraded orgmode from version 9.2.6 (9.2.6-4-ge30905-elpa to version 9.3 (9.3-8-geab7c4-elpa. On a system where the older version is installed, toggling works fine. Johannes Am 24.12.2019 um 11:30 schrieb Johannes Brauer

Re: problem with org-toggle-inline-images

2019-12-24 Thread Johannes Brauer
Hi Marco, thank for your answer Am 24.12.2019 um 11:00 schrieb Marco Wahl mailto:marcowahls...@gmail.com>>: The following message is a courtesy copy of an article that has been posted to gmane.emacs.orgmode as well. Hi Johannes, Thanks for the report. Typing C-c C-x C-v the image is

Re: How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-24 Thread Marco Wahl
stardiviner writes: > I try to get the parsed HTML content into Org format content for org capture > template. > > #+begin_src emacs-lisp > (require 'org-eww) > (with-temp-buffer > (insert html) > (org-eww-copy-for-org-mode) > ;; FIXME does not yank converted content, inserted original

Re: problem with org-toggle-inline-images

2019-12-24 Thread Marco Wahl
Hi Johannes, Thanks for the report. > Typing C-c C-x C-v the image is displayed in the org buffer > correctly. Typing C-c C-x C-v again the image does not disappear and I > get the error message: > > org-toggle-inline-images: Symbol’s value as variable is void: image-map > > Any hints what is

How to get parsed output of org-eww-copy-for-org-mode ?

2019-12-24 Thread stardiviner
I try to get the parsed HTML content into Org format content for org capture template. #+begin_src emacs-lisp (require 'org-eww) (with-temp-buffer (insert html) (org-eww-copy-for-org-mode) ;; FIXME does not yank converted content, inserted original HTML instead. (current-kill 0)