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

Extra line between rows using html table with render() #189

Open
dragonofmercy opened this issue Nov 13, 2024 · 0 comments
Open

Extra line between rows using html table with render() #189

dragonofmercy opened this issue Nov 13, 2024 · 0 comments

Comments

@dragonofmercy
Copy link

I'm using an html table for formating my data and I have extra line between all row of the table in the console.

image

Same problem with box style

image

I get the code generated by your package and you can see all extra carrige return

image

Here is the php source for testing

render(<<<'HTML'
<table style="box">
  <thead>
    <tr>
      <th>Company</th>
      <th>Contact</th>
      <th>Country</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Alfreds Futterkiste</td>
      <td>Maria Anders</td>
      <td class="text-yellow">Germany</td>
    </tr>
    <tr>
      <td>Centro comercial Moctezuma</td>
      <td>Francisco Chang</td>
      <td class="text-yellow">Mexico</td>
    </tr>
  </tbody>
</table>
HTML);
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

No branches or pull requests

1 participant