-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Allow nested ///
in SassDoc comments.
#212
Comments
I explored this a bit today. It stems from CDocParser, which automatically strips any occurrence of Issues filed in CDocParser and SassDoc. |
The related question I got while showing this around was: "can I use a block-comment format, rather than line-comments?" That would likely have to be some marked variant on CSS comment style. Maybe with extra /***
Some way to have comment blocks
without marking every line?
@group api
***/ |
I'm pretty sure SassDoc used to support that, but intentionally dropped it: SassDoc/sassdoc#326 (comment) |
Yeah, that's partly because they only support Sass. We also support CSS for the basic features, making it a more reasonable option for us. But if we'd have to go through them, likely an issue. |
If we fork SassDoc we could pretty easily enable block comments, and see if it breaks anything else. SassDoc/sassdoc#467 |
I submitted a PR to CDocParser that seems to fix this (FWeinb/CDocParser#17), and opened a new Herman PR using that fork (#220). |
When we want to document how to document something, ideally we could do:
/// /// @colors
But SassDoc strips both sets of
///
, leaving just@colors
instead of/// @colors
. Right now we're using a workaround --/// // @colors
, which results in// @colors
-- but that's a bit confusing. Can we submit a PR to SassDoc to make this work?The text was updated successfully, but these errors were encountered: