Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs-linter/.markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"MD033": false, // Inline HTML. Essential for Docusaurus features (tabs, admonitions, specialized formatting).
"MD034": false, // Bare URLs (e.g. https://example.com) without <brackets>. Common in quickstart guides.
"MD009": false, // Trailing spaces. Flags every invisible space at the end of a line. Huge noise source.
"MD060": false // Table column style. Flags tables that aren't perfectly ASCII-aligned in the raw text file. Purely visual.
"MD060": false, // Table column style. Flags tables that aren't perfectly ASCII-aligned in the raw text file. Purely visual.
"MD041": false // First line heading. Fires on every Docusaurus category index page (MDX imports before any heading).
}
1 change: 1 addition & 0 deletions docs-linter/.vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ Microsoft.ComplexWords = NO
Microsoft.Contractions = NO
Microsoft.FirstPerson = NO
Microsoft.HeadingPunctuation = NO
Microsoft.Dashes = NO
6 changes: 6 additions & 0 deletions packages/docusaurus-theme/css/legacy.css
Original file line number Diff line number Diff line change
Expand Up @@ -1989,6 +1989,12 @@ code {
white-space: pre;
}

/* Inline code must wrap; the rule above forces white-space: pre, which overflows the page on mobile. */
:not(pre) > code {
white-space: normal;
overflow-wrap: anywhere;
}

code p {
}

Expand Down
Loading