fix(docs): strip backticks from Section 5 verbatim EXIT STATUS/ARGUMENTS lines #138
No Reviewers
Labels
Clear labels
Area/CI
Area/Completions
Area/Components
Area/Config
Area/Docs
Area/Functions
Area/Integrations
Area/Prompt & Theme
Area/Scripts
Area/Tests
Compat/Breaking
Kind/Bug
Kind/Chore
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Performance
Kind/Refactor
Kind/Security
Kind/Testing
good first issue
help wanted
.github/workflows and repository automation
completions/ - tab-completion scripts
The opinionated-component system (C1-C6)
config.fish and conf.d/ - startup and environment
docs/manual/ and the generated manual, man page, and site
functions/ - user-facing functions and helpers
integrations/ - third-party tool wiring
themes/ and prompt appearance
scripts/ - standalone helper scripts
tests/ - the syntax lint and functional suite
Breaking change that won't be backward compatible
Something is not working
Tooling, dependencies, and housekeeping
Documentation changes
Improve existing functionality
New functionality
Makes existing behavior faster or lighter
Restructures code without changing behavior
This is security issue
Issue or pull request related to testing
Priority
Critical
1
The priority is critical
Priority
High
2
The priority is high
Priority
Low
4
The priority is low
Priority
Medium
3
The priority is medium
Reviewed
Confirmed
1
Issue has been confirmed
Reviewed
Duplicate
2
This issue or pull request already exists
Reviewed
Invalid
3
Invalid issue
Reviewed
Won't Fix
3
This issue won't be fixed
Status
Abandoned
3
Somebody has started to work on this but abandoned work
Status
Blocked
1
Something is blocking this issue or pull request
Status
Need More Info
2
Feedback is required to reproduce issue or to continue work
Well-scoped and self-contained; a good place to start
Maintainer is looking for someone to pick this up
No labels
Milestone
No items
No Milestone
Projects
Clear projects
No projects
Assignees
rootiest (Rootiest)
Clear assignees
No Assignees
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: rootiest/fish-config#138
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
What
docs/verify-manual.py'stest_concat_section_five_stays_verbatimhas been failing inbuild-docsCI since before PR #133 merged (confirmed identical failure on31b89b, the commit before #133). Section 5 (function manpages) is pandoc-rendered verbatim, so a backtick inside an EXIT STATUS or ARGUMENTS line renders as a literal backtick character on the page instead of markup — the test catches exactly that.CI's log only ever showed 3 of the 7 actual offending lines (the assertion truncates to
offenders[:3]). Ran the check locally and enumerated all of them.Fix
Reworded 9 backtick-quoted commands to plain text across 6 files, matching how each function's own DESCRIPTION already refers to the same command:
functions/check_fish_deps.fish—`fish-deps status`→fish-deps statusfunctions/lock.fish—`loginctl lock-session`→loginctl lock-sessionfunctions/cleanup.fish—`sudo pacman -Rns`→sudo pacman -Rnsfunctions/claude-pr.fish,functions/claude-docs.fish—`claude`→claudefunctions/dops.fish—`docker ps`→docker ps(2 lines: ARGUMENTS and EXIT STATUS)functions/ports.fish—`lsof`→lsoffunctions/screensleep.fish—`busctl`→busctlfunctions/steam-dl.fish—`steam`→steamNo behavior change — doc-comment text only.
Testing
python3 docs/verify-manual.py— 74/74 passed (was 73/74).