You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the contents of a table cell aren't fully contained in one "paragraph" - that is, if I hit enter while typing or copy-paste content that includes multiple lines, the second portion of the text within the published cell looks bigger and more widely spaced than the top portion of the text.
Feature Use Case
Textbooks often compare content using tables that include multiple lines or paragraphs within individual cells.
Other Notes
My apologies if this isn't the right place to put this issue or if it's been reported elsewhere. (I tried doing a search but am still getting to know the intricacies of the repository and the etiquette of making these posts!)
The text was updated successfully, but these errors were encountered:
We're targeting .chapter table and applying font-size .9em, but the subsequent content is wrapped in autop and that content is targeted by our .chapter p rule, which has font-size 1.125em. We can fix in McLuhan/Buckram.
We've found that the issues we're seeing here appear to stem from two things:
Initial content placed inside of a table cell is not wrapped in auto p but is rendered as raw HTML inside of a <td> element. See Automatic <p> tags after first paragraph in table cells with multiple paragraphs #935. Subsequent new lines are wrapped <p> elements which have styling rules already written for them. The same is true for list elements.
We're targeting .chapter table and applying font-size .9em, but the subsequent content is wrapped in autop and that content is targeted by our .chapter p rule, which has font-size 1.125em. We can fix in McLuhan/Buckram.
I would recommedn changing the rule for .chapter table as to also target paragraphs within the table:
- .chapter table+ .chapter table,+ .chapter table p
Feature Description
If the contents of a table cell aren't fully contained in one "paragraph" - that is, if I hit enter while typing or copy-paste content that includes multiple lines, the second portion of the text within the published cell looks bigger and more widely spaced than the top portion of the text.
Feature Use Case
Textbooks often compare content using tables that include multiple lines or paragraphs within individual cells.
Other Notes
My apologies if this isn't the right place to put this issue or if it's been reported elsewhere. (I tried doing a search but am still getting to know the intricacies of the repository and the etiquette of making these posts!)
The text was updated successfully, but these errors were encountered: