Lists can be used in a wysiwyg context. To do so, add the sds-wysiwyg class around the list you wish to style.
The following modifiers will change the lists' styles:
        
        <ul class="sds-list -checkIcon">
    <li>
        item
    </li>
    <li>
        item
    </li>
    <li>
        item
    </li>
    <li>
        item
    </li>
</ul>
        
    
        <{{ eltType }} class="{{ namespace }}list{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
    {% for key, item in listItem %}
		{% if item %}
			<li{% if item.disabled %} class="{{ namespace }}list__disabled"{% endif %}{% if item.unavailable %} class="{{ namespace }}list__unavailable"{% endif %}>
				{{ item.text | safe }}
				{% if item.srOnly %}<span class="sr-only">{{ item.srOnly }}</span>{% endif %}
				{% if subeltType %}
				<{{ subeltType}} class="{{ namespace }}list">
				{% for key, item in sublistItem %}
					{% if item %}
						<li{% if item.disabled %} class="{{ namespace }}list__disabled"{% endif %}{% if item.unavailable %} class="{{ namespace }}list__unavailable"{% endif %}>
							{{ item.text | safe }}
							{% if item.srOnly %}<span class="sr-only">{{ item.srOnly }}</span>{% endif %}
						</li>
					{% endif %}
				{% endfor %}
				</{{ subeltType}}>
				{% endif %}
			</li>
		{% endif %}
    {% endfor %}
</{{ eltType }}>
    
                                /* variables specific to current element */
$element-specific-variables: "";
.#{$namespace}list {
    /* Save root element context for easy access if nesting is needed */
    $self: &;
    /* properties of current element  + media queries */
    @include list();
    /* Pseudo Elements */
    &::before {
    }
    &::after {
    }
    /*
    Include elements that are linked to the current element but have to reside at the root level of the stylesheet
    (e.g: keyframes)
    */
	> LI {
		@include list-item();
		> OL,
		> UL {
			margin-top: map-deep-get($token-spacer-stack-min-map, "md");
			@include media-breakpoint-up("lg") {
				margin-top: map-deep-get($token-spacer-stack-min-map, "md");
			}
		}
	}
    @at-root {
		UL#{&} {
			> LI {
				@include list-item-dot();
			}
		}
		OL#{&} {
			@include unordered-list();
		}
    }
    /* children - write selector in full in comments in order to facilitate search */
    // list__childElement
    /* modifiers */
    // list -checkIcon
    &.-checkIcon {
		@include list-check();
		> LI {
			@include list-item-check();
        }
		&.-checkIconAlt {
			> LI {
				@include list-item-check-alt();
				&#{$self}__disabled {
					@include custom-prop-fallback("color", "sys-color-text-neutral-vivid", true, true);
					@include list-item-check-alt-disabled();
				}
				&#{$self}__unavailable {
					@include list-item-unavailable;
				}
			}
		}
    }
    /* random parent element */
    /*
    *
    *   Syntax : .randomParentElt & {}
    *
    */
    /* Pseudo Classes */
    &:hover {
        @media (hover: hover) {
        }
    }
    &:focus {
    }
    &:active {
    }
    &:focus,
    &:active {
    }
}