sassdoc
sassdoc copied to clipboard
Allow more than one @output
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!
Give my idea a chance, people? 😢