Fix list-style-type documentation playground/code mismatch #2429
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes inconsistency between the interactive playground examples and the HTML code snippets in the list-style-type documentation.
Changes
list-insideclass to all three HTML code snippets (list-disc, list-decimal, list-none)<ol>to<ul>for the list-decimal example to match the playground implementationlist-insideclassIssue
Closes #2255
Testing
✅ Verified locally on development server
✅ Confirmed playground examples and code snippets now match exactly
✅ All three examples now correctly show
list-insideclass✅ Documentation renders correctly
Before
Code snippets showed:
<ul class="list-disc"><ol class="list-decimal"><ul class="list-none">But playground showed
list-insideon all examples.After
Code snippets now correctly show:
<ul class="list-inside list-disc"><ul class="list-inside list-decimal"><ul class="list-inside list-none">Matching the interactive playground examples.