blob: 8ec1a7b4f9056381784dda314f1537252061b2bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/// I want...
///
/// # Anchor!
pub struct Something;
// @has anchors/struct.SomeOtherType.html
// @has - '//a/@href' 'struct.Something.html#Anchor!'
/// I want...
///
/// To link to [Something#Anchor!]
pub struct SomeOtherType;
|