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

Simplified rendered structure of nested lists in beta editor #17178

Merged

Conversation

kevinansfield
Copy link
Contributor

refs https://github.com/TryGhost/Team/issues/1919
refs TryGhost/Koenig#796

Adjusts rendered output of nested lists to make styling easier (and more typical) for theme developers.

Before:

<ul>
  <li>one</li>
  <li>
    <ul>
      <li>one.one</li>
    </ul>
  </li>
</ul>

After:

<ul>
  <li>one
    <ul>
      <li>one.one</li>
    </ul>
  </li>
</ul>

refs TryGhost/Product#1919
refs TryGhost/Koenig#796

Adjusts rendered output of nested lists to make styling easier (and more typical) for theme developers.

Before:
```html
<ul>
  <li>one</li>
  <li>
    <ul>
      <li>one.one</li>
    </ul>
  </li>
</ul>
```

After:
```html
<ul>
  <li>one
    <ul>
      <li>one.one</li>
    </ul>
  </li>
</ul>
```
@kevinansfield kevinansfield merged commit 292663f into TryGhost:main Jul 3, 2023
15 checks passed
@kevinansfield kevinansfield deleted the adjust-nested-list-output branch July 3, 2023 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant