diff options
| author | ThomasSoeiro <[email protected]> | 2024-06-07 21:15:40 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-07 12:15:40 -0700 |
| commit | cd15313216c75e1ff3577da728172db9ff69a6b6 (patch) | |
| tree | f9d471e58b1b0161fe0aa404eb19b6ccc5059314 /test/command/3667.md | |
| parent | bfb0475d677bd5e7a61629107d99f2371a75e2d1 (diff) | |
Don't emit unnecessary classes in HTML tables (#9376)
Pandoc used to emit a `header` class on the `tr` element that forms the table header. This is no longer needed, because `head > tr` will do the same thing.
Similarly, pandoc used to emit `even` and `odd` classes on `tr`s, allowing striped styling. This is no longer needed, because one can use e.g. `tbody tr:nth-child(2n)`.
We now omit these classes, which have a good chance of conflicting with classes used for other things.
Closes #9325.
Diffstat (limited to 'test/command/3667.md')
| -rw-r--r-- | test/command/3667.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/command/3667.md b/test/command/3667.md index 97de8f598..07cd93c72 100644 --- a/test/command/3667.md +++ b/test/command/3667.md @@ -4,7 +4,7 @@ ^D <table> <tbody> -<tr class="odd"> +<tr> <td><a href="http://example.com/">link text</a></td> </tr> </tbody> |
