How to Create Internal Links With Resources IDs
In MODX, Resource IDs are the numbers assigned to a Document. For example: About Scalia Law (2). To link to the about page, use the following code:
<a href="[[~2]]">About Scalia Law</a>
How to Create an Anchor Link
To point to an anchor link within a page, use the following shortcode.
<a href="[[~[[*id]]]]#anchorname">Anchor Name</a>
To point to an anchor link on a different page, use the following shortcode:
<a href="[[~2]]#mason">About Mason</a>