Suppose I place a header in the documentation for a Rust module, src/module_a/mod.rs
:
# Header
Some text.
I know how to link to this header from other parts of src/module_a/mod.rs
using standard markdown syntax, and I know how to link to module_a
from other modules using standard Cargo doc syntax. But I'm not sure how to link directly to Header within module_a
from another module. Does anyone know?