Skip to content

nested list #82

@goldsky

Description

@goldsky

I tried to fix the nested list on TinyMCE.
Currently it does this:

        <ul>
            <li>list 1</li>
            <ul>
                <li>Nested list 1</li>
            </ul>
        </ul>

Which is supposed to be like this:

        <ul>
            <li>list 1
                <ul>
                    <li>Nested list 1</li>
                </ul>
            </li>
        </ul>

I found the it can be fixed by setting apply_source_formatting : false (http://stackoverflow.com/questions/6096506/problem-with-tinymce-and-list-items), but there is no setting for this.

Adding this to the class's property also does not work.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions