diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-07 13:04:01 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-07 15:13:17 -0300 |
commit | 153234c47c8b260ed92a56e9f7d6c91eb6785aa8 (patch) | |
tree | f1ec3bfe991257238ad66c62d3dffb7a542ef661 /Documentation/sphinx | |
parent | 526b88483183efa68ad692c473c1a434f4d2314d (diff) | |
download | op-kernel-dev-153234c47c8b260ed92a56e9f7d6c91eb6785aa8.zip op-kernel-dev-153234c47c8b260ed92a56e9f7d6c91eb6785aa8.tar.gz |
doc-rst: parse-headers: don't do substituition references
Add one extra escape character to avoid those warnings:
Documentation/linux_tv/videodev2.h.rst:6: WARNING: Inline substitution_reference start-string without end-string.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/sphinx')
-rwxr-xr-x | Documentation/sphinx/parse-headers.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/sphinx/parse-headers.pl b/Documentation/sphinx/parse-headers.pl index 16ea28b..0a3703b 100755 --- a/Documentation/sphinx/parse-headers.pl +++ b/Documentation/sphinx/parse-headers.pl @@ -220,7 +220,7 @@ $data =~ s/\n\s+\n/\n\n/g; # # Add escape codes for special characters # -$data =~ s,([\_\`\*\<\>\&\\\\:\/]),\\$1,g; +$data =~ s,([\_\`\*\<\>\&\\\\:\/\|]),\\$1,g; $data =~ s,DEPRECATED,**DEPRECATED**,g; |