You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I now used the following Code instead to solve my Problem:
#polylux-slide[
- bullet point 1
#list-one-by-one(marker:[-])[
indent bullet point 1][
indent bullet point 2][
indent bullet point 3]
- bullet point 2
- bullet point 3
]
``
Your first list wasn't properly indented because you didn't indent the line-by-line function.
Your second list was properly indented because you did indent the list-one-by-one function.
The first snippet works for me when indented like:
#polylux-slide[
- bullet point 1
#line-by-line[
- indent bullet point 1
- indent bullet point2
- indent bullet point 3
]
- bullet point 2
- bullet point 3
]
The second snippet doesn't work for me if I don't indent the function:
#polylux-slide[
- bullet point 1
#list-one-by-one(marker:[-])[
indent bullet point 1][
indent bullet point 2][
indent bullet point 3]
- bullet point 2
- bullet point 3
]```
Bug Report
Summary
Indentation of Lists break the
#line-by-line
function.Code Example
Expected Result
Uncovered indented Bullet Points to be Indented.
Actual Result
All Bullet Points are at the Same Level.
Environment
Additional Information
Not shure if this is related or similar to Issues #128 or #162, therefore created this Issue.
The text was updated successfully, but these errors were encountered: