Book with two chapters, second chapter references a specific heading in the other chapter. See example below. chapter1/README.md ``` # Heading 1 text # Heading 2 More text ``` chapter2/README.md ``` [This link works.](../chapter1/README.md) [This link does not work.](../chapter1/README.md#heading-2) ```