I have a mixin and a function with the same name. Autofill and the @require interprets just the function and doesn't link to the mixin at all.
Example:
@mixin rem(...) {
...
}
@function rem(...) {
...
}
/// Documented Item
/// @require {mixin} rem
/// or autofill
@mixin line-height(...) {
@include rem(...);
}
Output:
Could you guys please have a look into this? Thank you very much in advance!