Skip to content

Commit

Permalink
beautify Markdown in README a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
asb-capfan committed Oct 1, 2015
1 parent a56f7cd commit bff6acd
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

## Aligner for Parallel Corpora

Version 0.3 Copyright (C) 2003
Brian Rassier, [email protected]
Ted Pedersen, [email protected]
University of Minnesota, Duluth

Released January 27, 2003
Copyright (C) 2003

* Brian Rassier, [email protected]
* Ted Pedersen, [email protected]
* University of Minnesota, Duluth

http://www.d.umn.edu/~tpederse/parallel.html


Expand Down Expand Up @@ -52,9 +51,19 @@ script which contains the following:
use Tk::SimpleFileSelect;

my $mw = MainWindow->new;
$e1 = $mw->HistEntry(-textvariable,\$file1, -background,"white", -takefocus,1)->pack(-side,'top', -anchor,'w');
$mw->Button(-text,'Find A File',-command,\&find)->pack(-side,'bottom');
$mw->Button(-text,'Close',-command,sub{exit;})->pack(-side,'bottom');
$e1 = $mw->HistEntry(
-textvariable => \$file1,
-background => "white",
-takefocus => 1,
)->pack(-side,'top', -anchor,'w');
$mw->Button(
-text => 'Find A File',
-command => \&find,
)->pack(-side => 'bottom');
$mw->Button(
-text => 'Close',
-command => sub{exit;},
)->pack(-side => 'bottom');

MainLoop;

Expand Down

0 comments on commit bff6acd

Please sign in to comment.