-
Notifications
You must be signed in to change notification settings - Fork 57
Open
Labels
Description
Hi guys,
I have a problem with the parameter declaration, which use SASS interpolation.
Here is a simple example:
/// Test variable interpolation
/// @param {String} $foo ['foo'] - Foo value
/// @param {String} $foobar ['#{$foo}bar'] - Foo and bar value
@mixin test(
$foo: 'foo',
$foobar: '#{$foo}bar'
) {
body {
content: $foobar
}
}
The result of SassDoc looks like this:
I noticed, if I remove the {String}
type, everything works correctly, see here:
Is there a workaround, how to declare the type with interpolation or is it a bug?
PS
I use SassDoc 2.2.2.