sassdoc icon indicating copy to clipboard operation
sassdoc copied to clipboard

Allow more than one @output

Open robsonsobral opened this issue 4 years ago • 1 comments
trafficstars

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 avatar Sep 23 '21 19:09 robsonsobral

Give my idea a chance, people? 😢

robsonsobral avatar Apr 02 '23 16:04 robsonsobral