* On 2015-01-02 at 15:42, Nicolas Goaziou wrote:
> Ken Mankoff writes:
>
> In your initial mail, you wrote
>
> (org-add-link-type
>"cite" (lambda (key) (org-open-file cby-references-file t nil key))
>(lambda (path desc format)
> (cond
> ((eq format 'latex) (format "\\autoc
Ken Mankoff writes:
> I don't see mention of custom export functions in the manual. Is there a
> page describing how I would use these, or can you provide an example
> that would stop printing of links in ASCII export?
In your initial mail, you wrote
(org-add-link-type
"cite" (lambda (key
* On 2015-01-01 at 15:45, Nicolas Goaziou wrote:
> Anyway, custom export functions during ASCII export are not supported
> in 8.2.10. I fixed it in 8.3. You may want to update Org to test the
> new behaviour.
I don't see mention of custom export functions in the manual. Is there a
page describin
Ken Mankoff writes:
> OK. If I set that to nil then the links are not at the bottom of the
> section, they are inline. But ASCII (in my opinion) shouldn't have
> links.
I disagree. It is a bug to silently ignore every link in ASCII export.
> Can you advise how I get no links (or is it no notes?
* On 2015-01-01 at 13:59, Ken Mankoff wrote:
> OK. If I set that to nil then the links are not at the bottom of the
> section, they are inline. But ASCII (in my opinion) shouldn't have
> links. If I wanted links, I'd use Org or Markdown. Can you advise how
> I get no links (or is it no notes?) at
* On 2015-01-01 at 13:36, Nicolas Goaziou wrote:
>> When I export to ASCII, things look mostly great. Except, at the
>> bottom of every section, I have the "raw" Org citations repeated.
>> That is, if I [[cite:Foo2001]] somewhere in the text, at the bottom
>> I'll see:
>>
>> [(Foo, 2001)] cite:Fo
Hello,
Ken Mankoff writes:
> I have the following setup for citing in Org documents:
>
> (org-add-link-type
> "textcite" (lambda (key) (org-open-file cby-references-file t nil key))
> (lambda (path desc format)
>(cond
> ((eq format 'latex) (format "\\textcite{%s}" path))
> ((eq fo
Hi,
I have the following setup for citing in Org documents:
(org-add-link-type
"textcite" (lambda (key) (org-open-file cby-references-file t nil key))
(lambda (path desc format)
(cond
((eq format 'latex) (format "\\textcite{%s}" path))
((eq format 'ascii) (format "@%s" path))
))