You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This leads all internal links in the document to get this base prepended. Looking at https://arxiv.org/html/2205.15760v3 as an example, this means that for instance (Boutilier et al., <a class="ltx_ref" href="#bib.bib17" title="">2015</a>) actually points to https://arxiv.org/html/2205.15760v3/#bib.bib17 which leads to 404. It should point to https://arxiv.org/html/2205.15760v3#bib.bib51 without the / before the anchor #bib.bib17. So all internal links (e.g. to figures, theorems, or bib items) are broken.
So I believe the above line should be changed to
base_html=f'<base href="/html/{id}">'
The text was updated successfully, but these errors were encountered:
The conversion inserts a
<base>
tag in the head of the HTML document:arxiv-view-as-html/ConversionContainer/source/convert/__init__.py
Line 276 in b3a3875
This leads all internal links in the document to get this base prepended. Looking at https://arxiv.org/html/2205.15760v3 as an example, this means that for instance
(Boutilier et al., <a class="ltx_ref" href="#bib.bib17" title="">2015</a>)
actually points tohttps://arxiv.org/html/2205.15760v3/#bib.bib17
which leads to 404. It should point tohttps://arxiv.org/html/2205.15760v3#bib.bib51
without the/
before the anchor#bib.bib17
. So all internal links (e.g. to figures, theorems, or bib items) are broken.So I believe the above line should be changed to
The text was updated successfully, but these errors were encountered: