Skip to content

remark-align should not break blocks #203

Open
@vhf

Description

@vhf

Here is a regression test:

test.skip('should not break blocks such as lists', () => {
const {contents} = render(dedent`
# title
->
- list item
- list -> item
- sublist
- ->
- c
- d
<-
`)
expect(contents).toBe(dedent`
<h1>title</h1>
<div class="align-center"><ul>
<li>list item</li>
<li>list -> item</li>
<li>sublist</li>
<li>-></li>
<li>c</li>
<li>d</li>
</ul></div>
`)
})

IMO the whole list should be wrapped in a center-align. Instead, it is split in half and right-aligned, the marker after the list not being taken into account, the list (which is a block) being broken in half.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions