Re: [PATCH] docs: automarkup.py: add skipidentifiers
From: Randy Dunlap
Date: Mon Aug 24 2026 - 13:18:28 EST
Hi,
On 8/24/26 12:03 AM, Manuel Ebner wrote:
> Add skipidentifiers to reduce wrongfully high-lighted (bold) words.
>
> Signed-off-by: Manuel Ebner <manuelebnerli@xxxxxxxxxxx>
whac-a-mole alert:
"struct request" here is no longer highlighted:
Documentation/block/blk-mq.rst:will then build a new structure from it, the struct request that will
For most of the other words here, I'm OK with this patch.
> ---
> Pre-patch discussion:
> https://lore.kernel.org/all/bba57d51c72d9387ccef2b5979fa618e980c3ebf.camel@xxxxxxxxxxx/
> ---
> Documentation/sphinx/automarkup.py | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/sphinx/automarkup.py b/Documentation/sphinx/automarkup.py
> index c2227ab0a..8a6174950 100644
> --- a/Documentation/sphinx/automarkup.py
> +++ b/Documentation/sphinx/automarkup.py
> @@ -51,7 +51,10 @@ Skipnames = [ 'for', 'if', 'register', 'sizeof', 'struct', 'unsigned' ]
> # when following struct/union/enum/typedef keywords.
> # Example: "a simple struct that" in workqueue.rst should not be marked as code.
> #
> -Skipidentifiers = [ 'that', 'which', 'where', 'whose' ]
> +Skipidentifiers = [ 'and', 'are', 'as', 'containing', 'in', 'including',
> + 'is', 'name', 'needs', 'of', 'or', 'pages',
> + 'passed', 'randomization', 'request', 'that',
> + 'to', 'where', 'which', 'whose', 'will' ]
>
> #
> # Many places in the docs refer to common system calls. It is
--
~Randy