mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
doc-rst: parse-headers: remove trailing spaces
The function that replace references add a "\ " at the end of references, to avoid the ReST markup parser to not identify them as references. That works fine except for the end of lines, as a sequence of { '\', ' ', '\n' } characters makes Sphinx to ignore the end of line. So, strip those escape/spaces at the end of lines. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
2dd4f70985
commit
fb6fc6c9ac
@ -303,6 +303,8 @@ foreach my $r (keys %typedefs) {
|
||||
$data =~ s/($start_delim)($r)$end_delim/$1$s$3/g;
|
||||
}
|
||||
|
||||
$data =~ s/\\ \n/\n/g;
|
||||
|
||||
#
|
||||
# Generate output file
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user