[PATCH] docs: automarkup.py: add skipidentifiers
From: Manuel Ebner
Date: Mon Aug 24 2026 - 03:07:12 EST
Add skipidentifiers to reduce wrongfully high-lighted (bold) words.
Signed-off-by: Manuel Ebner <manuelebnerli@xxxxxxxxxxx>
---
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
--
2.54.0