Nicolas Goaziou writes:
> Hello,
>
> Richard Kim writes:
>
>> Attached patch affects how 'info' links in org mode are converted to HTML
>> links. Today info links such as
>>
>> [[info:emacs#List Buffers]]
>>
>> are converted to this HTML link:
>>
>> emacs#List Buffers
>>
>> With the pat
Marcin Borkowski writes:
> Hi all,
>
> it seems that links to Info manuals are broken in HTML and LaTeX export
> (and possibly in other backends, too).
>
> Would it make sense to make them work, i.e., link to the official web
> versions, at least for standard Info manuals, like Emacs manual, Elis
It seems like org-html-publish-to-html does not translate info links
properly in generated HTML files. The problem is that spaces in info
nodes should be converted to dashes, but instead spaces are left as is.
For example org-mode link [[info:elisp#Hash Tables]] is converted as
elisp#Hash
tftor...@tftorrey.com (T.F. Torrey) writes:
> I wonder how much effort it would take to copy onto my own machine the
> scripts on the server that package the git maint version into an ELPA
> version, and modify them to package master instead. Probably not much.
The shell script below is what I u
Attached patch fixes a typo and also removes trailing white spaces.
The white spaces were removed due to adding a hook to remove them as
shown here:
(defun kimr-before-save-hook ()
"Delete trailing white spaces only in a few modes."
(when (eq major-mode 'org-mode)
Hi Nicolas,
Thanks for your feedback. Attached is new patch which incorporates all
your suggestions except the following:
> Not directly related to your patch, but shouldn't it be
>
> (user-error "Could not open: %s" name)
I'm not sure what you mean by this. Do you mean that the verb "open"