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

Initial words of documentation lines are incorrectly spread over 2 lines, half a line below rest of text block #411

Open
Abang-L opened this issue Mar 1, 2023 · 1 comment
Labels
i18n Localization layout Website layout

Comments

@Abang-L
Copy link

Abang-L commented Mar 1, 2023

On the Dutch version page https://semver.org/lang/nl/ in the list 'Specificatie Semantisch Versioneren (SemVer)' the beginning of the lines of points 6, 7 and 8 start wrong.
It seems they started in a too small column where 'Patchversie Z (x.y.Z' is spread over two lines.
Subsequently the rest of the text, 'x > 0) MOET worden ...', are place half a line above the beginning of that sentence.
The links to those points are not shown as well, where the other point do have a link, like https://semver.org/lang/nl/#spec-item-5. So link https://semver.org/lang/nl/#spec-item-6 works but isn't shown.
Tested this for firefox (110.0.1) and brave (1.48.164).

@jwdonahue
Copy link

jwdonahue commented Mar 7, 2023

Yup, somebody inserted tables into the list items for 6, 7 & 8. This causes serious alignment issues between the item numbers and associated text as the numbers are centered vertically in their cells.

<html>
<body>
<!--StartFragment-->

<li>
--
  | <table>
  | <tbody>
  | <tr>
  | <td>Patchversie Z (x.y.Z</td>
  | <td>x &gt; 0) MOET worden verhoogd als wijzigingen zijn doorgevoerd die compatibel zijn met de vorige versie. De definitie van een bugfix is een interne wijziging welke foutief gedrag corrigeert.</td>
  | </tr>
  | </tbody>
  | </table>
  | </li>
  | <li>
  | <table>
  | <tbody>
  | <tr>
  | <td>Mineurversie Y (x.Y.z</td>
  | <td>x &gt; 0) MOET worden verhoogd als nieuwe, met de vorige versie compatibele wijzigingen worden gedaan aan de publieke API. Het MOET worden verhoogd op het moment dat publieke-API-functionaliteit wordt uitgefaseerd. Het MAG worden verhoogd als substantiële nieuwe functionaliteit of verbeteringen worden doorgevoerd in de afgeschermde code. Het MAG ook wijzigingen van niveau patch bevatten. De patchversie MOET op 0 worden teruggezet wanneer een mineurversie is verhoogd.</td>
  | </tr>
  | </tbody>
  | </table>
  | </li>
  | <li>
  | <table>
  | <tbody>
  | <tr>
  | <td>Majeurversie X (X.y.z</td>
  | <td>X &gt; 0) MOET worden verhoogd als wijzigingen worden doorgevoerd niet compatibel zijn met de publieke API. Het MAG ook wijzigingen van niveau mineur en patch bevatten. De patch- en mineurversie MOETEN op 0 worden teruggezet wanneer majeurversie is verhoogd.</td>
  | </tr>
  | </tbody>
  | </table>
  | </li>

<!--EndFragment-->
</body>
</html>

@JohnTitor JohnTitor transferred this issue from semver/semver Mar 9, 2023
@JohnTitor JohnTitor added i18n Localization layout Website layout labels Mar 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
i18n Localization layout Website layout
Projects
None yet
Development

No branches or pull requests

4 participants
@jwdonahue @JohnTitor @Abang-L and others