Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
scorpio
external_rsync
Commits
39411fa8
Commit
39411fa8
authored
18 years ago
by
Wayne Davison
Browse files
Options
Download
Email Patches
Plain Diff
Added: also tweak single-/double-quotes and em-dashes.
parent
662fd70b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
tweak_manpage
tweak_manpage
+29
-0
No files found.
tweak_manpage
View file @
39411fa8
#!/usr/bin/perl -i -p
# Make some hyphens unbreakable.
s{(--\w[-\w]+)}{ $x = $1; $x =~ s/-/\\-/g; $x }eg
;
s/(?<!\\)-(['"\d*])/\\-$1/g
;
s#(['"(= /,])-(?!-)#$1\\-#g
;
...
...
@@ -6,3 +8,30 @@ s/(\\fB)-/$1\\-/g;
s/(\[\w)-(\w\])/$1\\-$2/g
;
s{(\\f\(CW.*?\\fP)}{ $x = $1; $x =~ s/(?<!\\)-/\\-/g; $x }eg
;
s/(\.\w+)-/$1\\-/g
;
# We only need to use "\&'" or "\&." at the start of a line.
s/(?<=.)\\\&(['.])/$1$2/g
;
# Use an em-dash where appropriate.
s/ \\?-{1,2} / \\(em /g
;
# Some quotes turn into open/close quotes.
s/'(.)'/\\(oq$1\\(cq/g
;
s/(^|[ (])"(?!( |$))/$1\\(lq/gm
;
s/(?<! )"([.,:;! )]|$)/\\(rq$1/gm
;
s/(\\\(lq[^(]*) "( |$)/$1 \\(rq$2/gm
;
s/(^| )" ([^(]*\\\(rq)/$1\\(lq $2/gm
;
# And some don't.
s/^([. ])(.*)/ $1 . realquotes($2) /
egm
;
s/(\\f(B|\(CW).*?\\fP)/ realquotes($1) /
egs
;
s/^\\\&(\\\(oq)/$1/gm
;
sub
realquotes
{
my
(
$txt
)
=
@_
;
$txt
=~
s/\\\([lr]q/"/g
;
$txt
=~
s/\\\([oc]q/'/g
;
$txt
;
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment