Skip to content

Fix extra backtick in Readme#717

Merged
ccordoba12 merged 1 commit into
python-lsp:developfrom
deeferentleeg:docs/fix-extra-backtick
Jul 19, 2026
Merged

Fix extra backtick in Readme#717
ccordoba12 merged 1 commit into
python-lsp:developfrom
deeferentleeg:docs/fix-extra-backtick

Conversation

@deeferentleeg

Copy link
Copy Markdown
Contributor

Summary

The Arch Linux installation code block in README.md was closed with four backticks (``````) instead of three (```), causing incorrect Markdown rendering. On GitHub, the extra backtick causes the text immediately following the code block ("Only on Alpine Linux...") to be incorrectly rendered as part of the code block rather than as normal prose.

The Problem

Line 71 of README.md contains:

sudo pacman -S python-lsp-server

(notice the four backticks closing the block)

## The Fix

Remove the extra backtick so the code block is properly closed with the standard three-backtick fence:

```diff
-sudo pacman -S python-lsp-server
-````
+sudo pacman -S python-lsp-server
+```

This is a one-character change — removing a single extra backtick — and does not affect any code, configuration, or functionality.

Verification

  • Confirmed the four-backtick sequence exists on the develop branch of python-lsp/python-lsp-server
  • Verified the fix produces valid Markdown (no remaining four-backtick sequences)
  • No other content changes

AI Usage Disclosure

An AI assistant was used to help locate the issue and draft this change. I have reviewed and understand every line of the diff, and I am the sole author of this contribution.

The Arch Linux installation code block in README.md was closed with
four backticks (````) instead of three (```), causing incorrect Markdown
rendering. This removes the extra backtick.
@ccordoba12 ccordoba12 added this to the v1.15.0 milestone Jul 19, 2026
@ccordoba12 ccordoba12 changed the title docs: fix extra backtick in Arch Linux install code block Fix extra backtick in Readme Jul 19, 2026
@ccordoba12
ccordoba12 merged commit dabcda5 into python-lsp:develop Jul 19, 2026
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants