mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-06 07:38:24 +00:00
I've been wondering why the inline code was rendered wrapped with no regards to words/whitespace for a while. Partially reverts 8b82f5 (#24927) - `word-break: break-all;` This is seriously wrong, replaced with `overflow-wrap: break-word;` - `white-space: normal;` -> `pre-wrap;` to preserve whitespace in code spans. - Added `display: block;` and `overflow-x: auto;` to tables. This contains wide tables with their own scrollbars without stretching the whole doc. - `overflow-x: hidden;` just clips content and possibly conflicts with navbar's `sticky` attribute. Removed.
============================ Nim's documentation system ============================ This folder contains Nim's documentation. The documentation is written in a format called *Markdown*, a markup language that reads like ASCII and can be converted to HTML automatically!