Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tei2txt/bin/tei2txt.pl
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#!/usr/bin/perl
#!/usr/bin/perl
#=======================================================================
# FILE: tei2txt.pl
# DESCRIPTION:
# DESCRIPTION: Tools for transforming TEI to Plain Text
# AUTHOR: Konstantin Baierer (kba), [email protected]
# CREATED: 10/27/2011 04:13:17 PM
#=======================================================================
use DTA::TEI::Text::Transform;

my $app = DTA::TEI::Text::Transform->new_with_options;
$app->to_stdout(1);
$app->process;
1 change: 1 addition & 0 deletions tei2txt/lib/DTA/TEI/Text/Transform.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use Data::Dumper;
use File::Share ':all';
use DTA::TEI::Text;
use File::Temp qw(tempfile);
use File::Slurp;
use IPC::Open2;

binmode STDIN, ":utf8";
Expand Down