Ihor, thank you for the quick workaround.

Unfortunately storing links is not much of an issue for me. The real issue is how I can get the internal links working in the exported html.

I could not find the right places to deactivate and re-activate inline-tasks during export.

I have a custom org-html-format-inlinetask-function. If I deactivate inline-tasks outside this formatter is never called, otherwise the links are not generated.

Where are the links/href are built? There should be the error that excludes inline-tasks.

thx,
m

Am Fr., 3. Dez. 2021 um 11:50 Uhr schrieb Ihor Radchenko <yantar92@gmail.com>:
Michael Dauer <mick.dauer@gmail.com> writes:

> Before (require 'org-inlinetask) all is fine. But after executing (require
> 'org-inlinetask) the following happens:
> 1. With point on/in t1 (org-store-link) stores *h2.
> 2. The manually created link below h1 works in the buffer. But it is
> exported as BROKEN LINK.

Confirmed.

> Any ideas how to get fully working links to inline-tasks?

I have the following in my config to mitigate this problem:

(defun org-inlinetask-store-link (oldfun &rest args)
  "Store link to inlinetask at point."
  (if (and (derived-mode-p 'org-mode)
           (org-inlinetask-in-task-p))
      (let ((org-inlinetask-min-level 1000))
        (apply oldfun args))
    (apply oldfun args)))

(advice-add 'org-store-link :around #'org-inlinetask-store-link)

Best,
Ihor