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

🎨 Adjusted output structure for nested lists #796

Merged

Conversation

kevinansfield
Copy link
Contributor

refs https://github.com/TryGhost/Team/issues/1919

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

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 2cf1288 into TryGhost:main Jul 3, 2023
2 checks passed
@kevinansfield kevinansfield deleted the adjust-nested-list-output branch July 3, 2023 08:56
kevinansfield added a commit to kevinansfield/Ghost that referenced this pull request Jul 3, 2023
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 added a commit to TryGhost/Ghost that referenced this pull request Jul 3, 2023
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>
```
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