We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Standardize Level I/II to Level One/Two Replace LEVEL I (line 97), Level I (line 4091), and Level II (line 4092) with the consistent 'Level One' / 'Level Two' form used throughout. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Convert remaining Note: paragraph to callout; fix typo Convert paragraph-opening 'Note:' at line 3820 to > [!NOTE] callout. Also fix 'may not he necessary' → 'may not be necessary'. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Merge remote NOTE: callout changes; resolve wrap-style conflicts Both branches converted NOTE: blocks to > [!NOTE] callouts. Resolved by taking remote's multi-line wrapped format for six conflicts; kept HEAD's callout format over remote's unconverted NOTE: for one conflict (also preserving 'SCFMAN' over remote's truncated 'SCF'). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Convert NOTE: paragraphs to GitHub callout format Replace all 25 bare "NOTE:" text blocks with > [!NOTE] blockquotes, joining wrapped continuation lines into a single callout line. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Updated The NitrOS‐9 System Programmers Guide (markdown)
Remove Pandoc fenced div markers (:::) Convert three informalexample blocks: strip ::: from 4-space-indented code (already renders as GFM code blocks), and wrap plain-text signal code list in a fenced code block. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Merge remote changes; keep corrected GitHub heading anchors Resolved conflict by taking remote's cell formatting (removed trailing ' =' from $9,$A and $B,$C cells) while preserving the corrected cross-reference link anchors from HEAD. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Fix cross-reference links to use GitHub heading anchors Replace 127 Pandoc-style anchor IDs with GitHub auto-generated heading anchors so internal links resolve correctly on the wiki. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Fix system call tables: move data out of header row to prevent bold/centered styling Add an empty header row before each system call parameter table so that ASSEMBLER CALL, MACHINE CODE, INPUT, etc. rows render as <td> (plain left-aligned text) instead of <th> (bold, centered). Also set :--- on the separator row for explicit left-alignment on all columns. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Convert remaining Pandoc simple tables to GFM pipe tables; strip heading anchors - Convert all Pandoc simple table formats (Pattern A: SINGLE-wrapped with header, Pattern B: headerless MULTI/MULTI, Pattern C: inline header directly before MULTI) to GFM pipe tables - Strip all {#anchor} Pandoc anchor syntax from headings (31 occurrences) - Fix column alignment: shift cell extraction left by 1 to match Pandoc's data layout - Fix multi-line cell continuation to merge into correct column, not always last - Handle consecutive SINGLE separators (section dividers) without consuming table openings - Stop Pattern B collection at blank-before-heading to handle tables without closing MULTI Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Bold first column in all tables in System Programmers Guide Make the label column consistently bold rather than only the GFM header row, so all row labels render with equal visual weight.
Remove trailing periods from register descriptions in tables Standardize register entries to have no trailing periods, matching the majority style throughout the document.
Put each register description on its own line in System Programmers Guide In table cells listing register inputs/outputs, insert <br> before each (REGISTER) = entry so each one renders on a separate line.
Remove trailing colons from table row labels in System Programmers Guide Labels like "ASSEMBLER CALL:", "INPUT:", "OUTPUT:" etc. had redundant colons since they are already in a table context.
Convert grid tables to GFM pipe tables in System Programmers Guide Replace Pandoc grid table syntax (+---+---+) with GitHub-flavored Markdown pipe tables. Multi-line cells are collapsed to single lines with <br> for paragraph breaks within cells.
Fix admonition syntax in System Programmers Guide Convert Pandoc fenced div admonitions (:::: note/warning) to GitHub-flavored Markdown callouts (> [!NOTE] / > [!WARNING]).
Fix formatting in System Programmers Guide - Remove escaped apostrophes (\' -> ') - Convert <figure>/<pre><code> blocks to fenced code blocks - Decode </> HTML entities inside code blocks - Remove escaped dollar signs (\$ -> $)