Skip to content
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

List "in" List -> PhpOffice\PhpWord\Shared\Html #370

Open
philippfrenzel opened this issue Sep 16, 2014 · 5 comments
Open

List "in" List -> PhpOffice\PhpWord\Shared\Html #370

philippfrenzel opened this issue Sep 16, 2014 · 5 comments

Comments

@philippfrenzel
Copy link

philippfrenzel commented Sep 16, 2014

Hi,
the HTML ListItem doesn't render "sublists" if they are existing...:(

html
<ul>
    <li>Punkt 1
    <ul>
        <li>Wie soll es sch&ouml;ner Sein</li>
        <li>Und %ist noch so Fein</li>
    </ul>
    </li>
    <li>Punkt 2</li>
    <li>Punkt 3</li>
</ul>

Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.

@philippfrenzel
Copy link
Author

only returns the 1st Level :(

@alpha1125
Copy link

I had a similar issue. If I remember correctly, my work around was like this:

<ul>
    <li>Punkt 1</li>
    <ul><!-- moved the ul a sibling of it's original li parent -->
        <li>Wie soll es sch&ouml;ner Sein</li>
        <li>Und %ist noch so Fein</li>
    </ul>
    <li>Punkt 2</li>
    <li>Punkt 3</li>
</ul>

that I believe works.

@philippfrenzel
Copy link
Author

well, problem is, that I'm using CFK-Editor in "NONE" Html Mode.. So I don't really have the influence on the code while entered.. And I don't wanna write regexp to clean html after submit... Thanks for the hint!!

@laurinkeithdavis
Copy link

+1

@github-actions
Copy link

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If this is still an issue for you, please try to help by debugging it further and sharing your results.
Thank you for your contributions.

@github-actions github-actions bot added the Stale label Nov 18, 2022
@Progi1984 Progi1984 removed the Stale label Nov 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

4 participants