* org-faq page on Worg seems busted
@ 2017-01-25 21:14 Nick Dokos
2017-01-25 22:36 ` Nick Dokos
0 siblings, 1 reply; 6+ messages in thread
From: Nick Dokos @ 2017-01-25 21:14 UTC (permalink / raw)
To: emacs-orgmode
The "Latest questions on SO" section at the beginning of
http://orgmode.org/worg/org-faq.html
shows literal HTML:
<script language="JavaScript" src="http://feed2js.org//feed2js.php?src=http://stackoverflow.com/feeds/tag?tagnames=org-mode&sort=newest&chan=title&num=5&utf=y" charset="UTF-8" type="text/javascript"></script>
<noscript> <a href="http://feed2js.org//feed2js.php?src=http://stackoverflow.com/feeds/tag?tagnames=org-mode&sort=newest&chan=title&num=5&utf=y&html=y">View RSS feed</a> </noscript>
The source looks like this:
<noscript>
so something broke the export.
--
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-faq page on Worg seems busted
2017-01-25 21:14 org-faq page on Worg seems busted Nick Dokos
@ 2017-01-25 22:36 ` Nick Dokos
2017-01-25 23:20 ` Nick Dokos
2017-01-27 8:25 ` Michael Welle
0 siblings, 2 replies; 6+ messages in thread
From: Nick Dokos @ 2017-01-25 22:36 UTC (permalink / raw)
To: emacs-orgmode
Nick Dokos <ndokos@gmail.com> writes:
> The "Latest questions on SO" section at the beginning of
>
> http://orgmode.org/worg/org-faq.html
>
> shows literal HTML:
>
> <script language="JavaScript"
> src="http://feed2js.org//feed2js.php?src=http://stackoverflow.com/feeds/tag?tagnames=org-mode&sort=newest&chan=title&num=5&utf=y"
> charset="UTF-8" type="text/javascript"></script>
>
> <noscript> <a
> href="http://feed2js.org//feed2js.php?src=http://stackoverflow.com/feeds/tag?tagnames=org-mode&sort=newest&chan=title&num=5&utf=y&html=y">View
> RSS feed</a> </noscript>
>
> The source looks like this:
>
> <noscript>
>
> so something broke the export.
It seems that org-faq.org is still using #+begin_html ... #+end_html
(instead of #+begin_export html ... #+end_export). I was trying to fix
that, but publishing locally fails at a couple of [[id:<UUID>][foo]] links:
Unable to resolve link: "id:facac2a6-3526-450d-ac42-8d36b16c6bab"
What's up with that?
I tried clicking on the link (e.g. line 2013 of org-faq.org) in the org
file - it says:
No match - create this as a new heading?
That has to be a bug, no?
--
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-faq page on Worg seems busted
2017-01-25 22:36 ` Nick Dokos
@ 2017-01-25 23:20 ` Nick Dokos
2017-01-27 8:25 ` Michael Welle
1 sibling, 0 replies; 6+ messages in thread
From: Nick Dokos @ 2017-01-25 23:20 UTC (permalink / raw)
To: emacs-orgmode
Version info just in case:
GNU Emacs 26.0.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.20.9) of 2017-01-19
Org mode version 9.0.3 (release_9.0.3-241-gc3d67b @ /home/nick/elisp/org-mode/lisp/)
--
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-faq page on Worg seems busted
2017-01-25 22:36 ` Nick Dokos
2017-01-25 23:20 ` Nick Dokos
@ 2017-01-27 8:25 ` Michael Welle
2017-01-27 8:27 ` Michael Welle
1 sibling, 1 reply; 6+ messages in thread
From: Michael Welle @ 2017-01-27 8:25 UTC (permalink / raw)
To: emacs-orgmode
Hello,
Nick Dokos <ndokos@gmail.com> writes:
[...]
> that, but publishing locally fails at a couple of [[id:<UUID>][foo]] links:
>
> Unable to resolve link: "id:facac2a6-3526-450d-ac42-8d36b16c6bab"
>
> What's up with that?
hm, I dimly remember having that (or a similar) problem. (require 'org-id)
fixed that for me.
Regards
hmw
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-faq page on Worg seems busted
2017-01-27 8:25 ` Michael Welle
@ 2017-01-27 8:27 ` Michael Welle
2017-01-27 16:28 ` Nick Dokos
0 siblings, 1 reply; 6+ messages in thread
From: Michael Welle @ 2017-01-27 8:27 UTC (permalink / raw)
To: emacs-orgmode
Hello,
Michael Welle <mwe012008@gmx.net> writes:
> Hello,
>
> Nick Dokos <ndokos@gmail.com> writes:
> [...]
>> that, but publishing locally fails at a couple of [[id:<UUID>][foo]] links:
>>
>> Unable to resolve link: "id:facac2a6-3526-450d-ac42-8d36b16c6bab"
>>
>> What's up with that?
> hm, I dimly remember having that (or a similar) problem. (require 'org-id)
> fixed that for me.
if the link target exists, of course.
Regards
hmw
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: org-faq page on Worg seems busted
2017-01-27 8:27 ` Michael Welle
@ 2017-01-27 16:28 ` Nick Dokos
0 siblings, 0 replies; 6+ messages in thread
From: Nick Dokos @ 2017-01-27 16:28 UTC (permalink / raw)
To: emacs-orgmode
Michael Welle <mwe012008@gmx.net> writes:
> Hello,
>
> Michael Welle <mwe012008@gmx.net> writes:
>
>> Hello,
>>
>> Nick Dokos <ndokos@gmail.com> writes:
>> [...]
>>> that, but publishing locally fails at a couple of [[id:<UUID>][foo]] links:
>>>
>>> Unable to resolve link: "id:facac2a6-3526-450d-ac42-8d36b16c6bab"
>>>
>>> What's up with that?
>> hm, I dimly remember having that (or a similar) problem. (require 'org-id)
>> fixed that for me.
> if the link target exists, of course.
>
That seems to do the job indeed - thanks!
--
Nick
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-01-27 16:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-25 21:14 org-faq page on Worg seems busted Nick Dokos
2017-01-25 22:36 ` Nick Dokos
2017-01-25 23:20 ` Nick Dokos
2017-01-27 8:25 ` Michael Welle
2017-01-27 8:27 ` Michael Welle
2017-01-27 16:28 ` Nick Dokos
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).