* ox-reveal cannot export
@ 2014-08-05 14:45 Robert Eckl
2014-08-05 16:04 ` Nick Dokos
2014-08-07 10:30 ` Tyler van Hensbergen
0 siblings, 2 replies; 6+ messages in thread
From: Robert Eckl @ 2014-08-05 14:45 UTC (permalink / raw)
To: emacs-orgmode
Hi,
after a long time i recently played with ox-reveal (with
org-mode release_8.3beta-167-g003edd)
While exporting to reveal i get
Symbol's function definition is void: org-html-format-headline--wrap
What i'm missing?
Regards,
Robert
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ox-reveal cannot export
2014-08-05 14:45 ox-reveal cannot export Robert Eckl
@ 2014-08-05 16:04 ` Nick Dokos
2014-08-07 10:30 ` Tyler van Hensbergen
1 sibling, 0 replies; 6+ messages in thread
From: Nick Dokos @ 2014-08-05 16:04 UTC (permalink / raw)
To: emacs-orgmode; +Cc: Nicolas Goaziou
Robert Eckl <eckl.r@gmx.de> writes:
> Hi,
>
> after a long time i recently played with ox-reveal (with
> org-mode release_8.3beta-167-g003edd)
>
> While exporting to reveal i get
>
> Symbol's function definition is void: org-html-format-headline--wrap
>
> What i'm missing?
>
Well, you are missing that function :-)
Nicolas removed it in commit c9ca0b6df86de13a5302b5a3c955fb2fb1023d36 a
couple of days ago. It's still in the maint branch, so you might want
to switch to that in the meantime, if you want to continue experimenting
with the reveal exporter.
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ox-reveal cannot export
2014-08-05 14:45 ox-reveal cannot export Robert Eckl
2014-08-05 16:04 ` Nick Dokos
@ 2014-08-07 10:30 ` Tyler van Hensbergen
2014-08-07 12:02 ` Nick Dokos
1 sibling, 1 reply; 6+ messages in thread
From: Tyler van Hensbergen @ 2014-08-07 10:30 UTC (permalink / raw)
To: emacs-orgmode
Robert Eckl <eckl.r <at> gmx.de> writes:
> While exporting to reveal i get
>
> Symbol's function definition is void: org-html-format-headline--wrap
>
> What i'm missing?
That function's name was changed. I made a temporary fix on
a forked branch on github and submitted a pull request
today (warning I'm new to elisp so I may have missed
something).
https://github.com/yjwen/org-reveal/pull/69
Not sure if it fixes everything but it is working for me know
and I am no longer receiving that error.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ox-reveal cannot export
2014-08-07 10:30 ` Tyler van Hensbergen
@ 2014-08-07 12:02 ` Nick Dokos
2014-08-07 12:22 ` Nicolas Goaziou
0 siblings, 1 reply; 6+ messages in thread
From: Nick Dokos @ 2014-08-07 12:02 UTC (permalink / raw)
To: emacs-orgmode
Tyler van Hensbergen <tyler@mainstreetgenome.com> writes:
> Robert Eckl <eckl.r <at> gmx.de> writes:
>
>> While exporting to reveal i get
>>
>> Symbol's function definition is void: org-html-format-headline--wrap
>>
>> What i'm missing?
>
>
> That function's name was changed. I made a temporary fix on
> a forked branch on github and submitted a pull request
> today (warning I'm new to elisp so I may have missed
> something).
>
> https://github.com/yjwen/org-reveal/pull/69
>
> Not sure if it fixes everything but it is working for me know
> and I am no longer receiving that error.
>
I haven't read things carefully, so take this with a large grain
of salt, but I think it should read:
...
(full-text (org-html-headline headline contents info)))
...
instead of passing a nil for contents.
--
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ox-reveal cannot export
2014-08-07 12:02 ` Nick Dokos
@ 2014-08-07 12:22 ` Nicolas Goaziou
2014-08-08 13:53 ` Yujie Wen
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2014-08-07 12:22 UTC (permalink / raw)
To: Nick Dokos; +Cc: emacs-orgmode
Hello,
Nick Dokos <ndokos@gmail.com> writes:
> Tyler van Hensbergen <tyler@mainstreetgenome.com> writes:
>
>> Robert Eckl <eckl.r <at> gmx.de> writes:
>>
>>> While exporting to reveal i get
>>>
>>> Symbol's function definition is void: org-html-format-headline--wrap
>>>
>>> What i'm missing?
>>
>>
>> That function's name was changed. I made a temporary fix on
>> a forked branch on github and submitted a pull request
>> today (warning I'm new to elisp so I may have missed
>> something).
>>
>> https://github.com/yjwen/org-reveal/pull/69
>>
>> Not sure if it fixes everything but it is working for me know
>> and I am no longer receiving that error.
>>
>
> I haven't read things carefully, so take this with a large grain
> of salt, but I think it should read:
>
> ...
> (full-text (org-html-headline headline contents info)))
> ...
>
> instead of passing a nil for contents.
It should not use `org-html-headline' anyway, as there is no guarantee
that this is the right function for headlines.
To "export like html back-end", there are `org-export-data-with-backend'
and `org-export-with-backend' functions, which doesn't require to know
the original function.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ox-reveal cannot export
2014-08-07 12:22 ` Nicolas Goaziou
@ 2014-08-08 13:53 ` Yujie Wen
0 siblings, 0 replies; 6+ messages in thread
From: Yujie Wen @ 2014-08-08 13:53 UTC (permalink / raw)
To: emacs-orgmode@gnu.org Mode
[-- Attachment #1: Type: text/plain, Size: 1647 bytes --]
Hi,
I've switched org-reveal's code to follow ox-html's changes. Since
ox-html is changing, I've committed my codes to devel branch.
Please pull the devel branch and try the fixes.
Please let me if there are any issue. Thanks.
Regards,
Yujie
2014-08-07 20:22 GMT+08:00 Nicolas Goaziou <mail@nicolasgoaziou.fr>:
> Hello,
>
> Nick Dokos <ndokos@gmail.com> writes:
>
> > Tyler van Hensbergen <tyler@mainstreetgenome.com> writes:
> >
> >> Robert Eckl <eckl.r <at> gmx.de> writes:
> >>
> >>> While exporting to reveal i get
> >>>
> >>> Symbol's function definition is void:
> org-html-format-headline--wrap
> >>>
> >>> What i'm missing?
> >>
> >>
> >> That function's name was changed. I made a temporary fix on
> >> a forked branch on github and submitted a pull request
> >> today (warning I'm new to elisp so I may have missed
> >> something).
> >>
> >> https://github.com/yjwen/org-reveal/pull/69
> >>
> >> Not sure if it fixes everything but it is working for me know
> >> and I am no longer receiving that error.
> >>
> >
> > I haven't read things carefully, so take this with a large grain
> > of salt, but I think it should read:
> >
> > ...
> > (full-text (org-html-headline headline contents info)))
> > ...
> >
> > instead of passing a nil for contents.
>
> It should not use `org-html-headline' anyway, as there is no guarantee
> that this is the right function for headlines.
>
> To "export like html back-end", there are `org-export-data-with-backend'
> and `org-export-with-backend' functions, which doesn't require to know
> the original function.
>
>
> Regards,
>
> --
> Nicolas Goaziou
>
>
[-- Attachment #2: Type: text/html, Size: 2747 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-08-08 13:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-05 14:45 ox-reveal cannot export Robert Eckl
2014-08-05 16:04 ` Nick Dokos
2014-08-07 10:30 ` Tyler van Hensbergen
2014-08-07 12:02 ` Nick Dokos
2014-08-07 12:22 ` Nicolas Goaziou
2014-08-08 13:53 ` Yujie Wen
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).