Skip to content
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 more than one @output #562

Open
robsonsobral opened this issue Sep 23, 2021 · 1 comment
Open

Allow more than one @output #562

robsonsobral opened this issue Sep 23, 2021 · 1 comment

Comments

@robsonsobral
Copy link

It could be useful to show more than one example:

///
/// @example scss
/// .username {
/// 	@include truncate;
/// }
///
/// @output css
/// .username {
/// 	overflow: hidden;
/// 	text-overflow: ellipsis;
/// 	white-space: nowrap;
/// }
///
/// @example scss
/// .excerpt {
/// 	@include truncate(5, 1.5em);
/// }
///
/// @output css
/// .excerpt {
///   display: block;
///   overflow: hidden;
///   display: -webkit-box;
///   -webkit-box-orient: vertical;
///   max-height: 7.5rem;
///   overflow:hidden;
///   overflow: hidden !important;
///   line-height: 1.5;
///   text-overflow: ellipsis;
///   -webkit-line-clamp: 5;
/// }
///

Thank you!

@robsonsobral
Copy link
Author

Give my idea a chance, people? 😢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant