247258b9d2
Fixes some names not showing in the manual. Note that there's one name left not showing due to LaTeX unicode support missing the characters. Change-Id: I9f1d0d3d49b485be54c83486a23cf97c82d257c8
15 lines
522 B
Perl
15 lines
522 B
Perl
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
while (<STDIN>) {
|
|
if(($_ =~ /^(\S+[\S ]+)/) && ($_ !~ /^People/)) {
|
|
s/\_/\\\_/g;
|
|
print "\\Forward{}\~$_";
|
|
}
|
|
}
|
|
|