The HTML export of an org file transforms the links to "to equivalent HTML links in the output"
How can I suppress this? I want to keep the same link names.
Example: If we have this org file.
** section 1
This is important.
<<important>>
** section 2
As we have seen in [[important]] ...
We get after the html export something like this:
<h2 id="org12cde62"><span class="section-number-2">1</span> section 1</h2>
<div class="outline-text-2" id="text-1">
<p>
This is important.
<a id="orgcfaef91"></a>
</p>
</div>
</div>
<div id="outline-container-org3491d62" class="outline-2">
<h2 id="org3491d62"><span class="section-number-2">2</span> section 2</h2>
<div class="outline-text-2" id="text-2">
<p>
As we have seen in <a href="#orgcfaef91">1</a>
</p>
</div>
</div>
So the export has transformed 'important' into 'orgcfaef91'.
I need the old link name ('important') in the html file. How to get this?
Are there problems I don't see -- that org-mode has this setting (transforming the id's) ?