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
Here is some text. And this is a <link target="https://example.com">Link</link>.
Link targets should be either URLs or parts of the document.
<heading label="heading1">My heading</heading>
This is some text and a <link target="heading1">Link</link> that links to the above heading.
Forward references
Example:
See <link target="image1">Image <var name="TARGET_NUMBER"/></link>
<image src="image.png" label="image1">My caption</image>
The Image to jump to when clicking the link has not yet been seen. The content of the link cannot be laid out properly as we do not yet know the number of the image for the given label image1. Thats why we have multiple layout passes. The current layout pass finished with the flag stable set to false. When encountering an unstable layout another layout pass is done. In the second layout pass we know the number of the image with the given label and can mark the layout as stable.
The text was updated successfully, but these errors were encountered:
Support for Links!
Link targets should be either URLs or parts of the document.
Forward references
Example:
The Image to jump to when clicking the link has not yet been seen. The content of the link cannot be laid out properly as we do not yet know the number of the image for the given label
image1
. Thats why we have multiple layout passes. The current layout pass finished with the flagstable
set tofalse
. When encountering an unstable layout another layout pass is done. In the second layout pass we know the number of the image with the given label and can mark the layout asstable
.The text was updated successfully, but these errors were encountered: