Skip to content

Commit

Permalink
markup and template fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 15, 2010
1 parent 749dc72 commit e2538aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions bin/book-to-latex
Expand Up @@ -6,6 +6,10 @@ print <<'HEADER';
\documentclass[11pt,a4paper,oneside]{report}
\usepackage{graphics,graphicx}
\usepackage{colortbl}
\usepackage{fancyvrb}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage[scaled]{beramono}
\begin{document}
HEADER
Expand Down
4 changes: 2 additions & 2 deletions src/basics.pod
Expand Up @@ -471,7 +471,7 @@ keys, and look in this hash when the name of a player is read:
...
my @names = $file.get.split(' ');
B<my %legitimate-players>
B<for @names -> $n {>
B<for @names ->>B< $n {>
B< %legitimate-players{$n} = 1;>
B<}>

Expand All @@ -480,7 +480,7 @@ keys, and look in this hash when the name of a player is read:
for $file.lines -> $line {
my ($pairing, $result) = $line.split(' | ');
my ($p1, $p2) = $pairing.split(' vs ');
B<for $p1, $p2 -> $p {>
B<for $p1, $p2 ->>B< $p {>
B< if !%legitimate-players{$p} {>
B< say "Warning: '$p' is not on our list!";>
B< }>
Expand Down

0 comments on commit e2538aa

Please sign in to comment.