是否可以 return 选择器与手写笔混合

Is it possible to return selectors with a stylus mixin

最近在使用 scss 一段时间后,开始试用手写笔。我还没有找到用手写笔语法编写以下 scss 的方法。有没有人对此有任何解决方案。非常感谢任何想法。

@mixin attention() {
    &:hover,
    &:active,
    &:focus {
        @content;
    }
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    @include attention() {
        outline: none;
        color: #09f;
    }
}

这是可能的:https://learnboost.github.io/stylus/docs/mixins.html#block-mixins

attention() {
    &:hover,
    &:active,
    &:focus {
        {block}
    }
}

a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    +attention() {
        outline: none;
        color: #09f;
    }
}