Skip to content

[BUG] Start property for ordered list #1480

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

Open
8uff3r opened this issue Apr 15, 2025 · 0 comments
Open

[BUG] Start property for ordered list #1480

8uff3r opened this issue Apr 15, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@8uff3r
Copy link

8uff3r commented Apr 15, 2025

Describe the bug:

The issue #266 still exists, at least on Android, I haven't tested it on iOS, flutter_html still ignores the start attribute and always starts at 1.

HTML to reproduce the issue:

<ol start="4">
   <li>
      fourth
  </li>
   <li>
      fifth
   </li>
</ol>

Html widget configuration:

Html(
    data: """
        <ol start="4">
          <li>
              fourth
          </li>
          <li>
              fifth
          </li>
        </ol>
""",
)

Expected behavior:

The list ordering should start at the position in the start property, i.e. in the above snippet it should be 4,5 but now it is 1,2

Screenshots:

Image

A picture of a cute animal (not mandatory but encouraged)

Image

@8uff3r 8uff3r added the bug Something isn't working label Apr 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant