rockbox/manual/credits.pl
Dominik Riebeling 41ac7da18b The credits file now also has underscores, which need to be escaped in LaTeX.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13431 a1c6a512-1295-4272-9138-f99709370657
2007-05-19 21:05:20 +00:00

15 lines
525 B
Raku

# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
while (<STDIN>) {
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
s/\_/\\\_/g;
print "\\Forward{}\~$_";
}
}