-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.scss autocomplete block formatting #313
Comments
In addition to the above comment entering This issue only happens when you're using the extension Atom: 1.26.0 Edit: Added pull request which fixes this issue |
It was indeed intended to use Switching to block comments will not work, because sassdoc will not pick them up. e.g.
Will only output documentation for JSON output of sassdoc[
{
"description": "Test\n",
"commentRange": {
"start": 1,
"end": 2
},
"context": {
"type": "variable",
"name": "var1",
"value": "1",
"scope": "private",
"line": {
"start": 3,
"end": 3
}
},
"type": "Number",
"access": "public",
"group": [
"undefined"
],
"file": {
"path": "test.scss",
"name": "test.scss"
}
},
{
"description": "Test\n",
"commentRange": {
"start": 12,
"end": 13
},
"context": {
"type": "variable",
"name": "var3",
"value": "3",
"scope": "private",
"line": {
"start": 14,
"end": 14
}
},
"type": "Number",
"access": "public",
"group": [
"undefined"
],
"file": {
"path": "test.scss",
"name": "test.scss"
}
}
] |
So I think it would be best, if
but not tigger the generation of a doc comment template. Right? |
Entering
/**
+ Enter expands towhen working in .css and .sass files. However, this is the result when working in .scss:
Here's an example from my current project:
Atom 1.25.1
docblockr 0.13.7
MacOS 10.12.6
The text was updated successfully, but these errors were encountered: