X-Git-Url: http://wagner.pp.ru/gitweb/?a=blobdiff_plain;f=Tex2fb2;h=96279b391b0062e4b4afdb8b8e21ceddb3366ecd;hb=0ac46e092ab428e1e13f0759d5dee59a35a76777;hp=2d644dfdac9b0cc512d5ba3229ee4a0a05bc7c12;hpb=416f4f9bd47860f06c2dfe92269dbc8a49f5887d;p=fiction%2FKate-the-Empress.git diff --git a/Tex2fb2 b/Tex2fb2 index 2d644df..96279b3 100755 --- a/Tex2fb2 +++ b/Tex2fb2 @@ -1,32 +1,56 @@ #!/usr/bin/perl -CDS use utf8; +use POSIX qw(strftime); +use MIME::Base64; # char-level modes my $poetry = 0; my $verbatim = 0; my @sections; my $buffer; +my $idseq = 0; # sequentual number of footnotes +my $footnotes=""; # # TODO italic paragaphs # footnotes # epigraphs # # print fictionbook header -print "\n"; +print "\n"; print "\n"; my $metadata = shift @ARGV; open F,"<",$metadata; +my $pics = ""; while () { + # Replace empty date with current date + if (// || /\s*<\/date>/) { + $_ = "". + strftime("%d/%m/%Y",localtime())."\n"; + } + # Add current to date as fractional part to version + if (/(\d*)(.\d*)?<\/version>/) { + my $ver = $1+time()/1E10; + $_=tag(sprintf("%g",$ver),"version")."\n"; + } + # Если существует cover.png, добавляем coverpage + if (//) { + $_=""; + if (-f "cover.png") { + my $id = "cover_png"; + $_ = "\n\n\n"; + $pics .= mkbinary("cover.png",$id); + } + } print $_; } close F; - +print "\n"; my $header =1; LINE: while (<>) { $environ = undef; if (/\\(begin|end){(\w+)}/) { - $environ = $2; + $environ=$2; $begin=$1 eq "begin"; if ($environ eq 'verbatim') { $verbatim=$begin; @@ -34,33 +58,42 @@ if (/\\(begin|end){(\w+)}/) { if ($begin) { pushsection("poem",undef); } else { - flushsection('poem'); + add_to_section(tag($buffer,'stanza')."\n") if $buffer; + $buffer=""; + flushsection('poem'); } $poetry = $begin; - } elsif($environ = 'document' && $begin) { + } elsif($environ eq 'document' && $begin) { $header=0; } } next LINE if $header; if ((/^$/ || $environ) && $buffer) { #output on empty line (p or stanza) depending on poetry mode - add_to_section(tag($buffer,$poetry?"stanza":"p")); + add_to_section(tag(flushbuffer($buffer),$poetry?"stanza":"p")."\n"); $buffer=""; } next LINE if $environ; # Section headings if (/\\(part|chapter|section|subsection|subsubsection)\*?{(.*)}/) { if ($buffer) { - add_to_section(tag($buffer,$poetry?"stanza":"p")); + add_to_section(tag(flushbuffer($buffer),$poetry?"stanza":"p")); $buffer=""; } - pushsection($1,$2); + pushsection($1,tag($2,"p")); next LINE; } if (/\\vspace{/) { add_to_section(""); next LINE; } +next LINE if /\\pagebreak\b/; +#replace ' and " with entities +s/&/&/g; +s/'/'/g; +s/"/"/g; +s//>/g; #normal mode: if (!$verbatim) { #strip TeX comments @@ -70,32 +103,42 @@ s/^%.*$//; s/\\sloppy\s+//g; s/\\sloppy{}//g; s/\\sloppy([^\w])/$1/g; +# strip extra space +s/^\s+//; +s/\s+$//; +s/(\s)\s+/$1/g; #replace TeX ligatures ~ --- << >> \% with appropriate unicode symbols s/~/\xA0/g; -s/---/-/g; +s/\\-/\xAD/g; +s/---/—/g; s/<>/»/g; s/\\%/%/g; s/\\dots/\x{2026}/g; +s/\\verb(.)(.*)\1/$2<\/code>/; } -#replace ' and " with entities -s/&/&/g; -s/'/'/g; -s/"/"/g; -s//>/g; if ($poetry) { chomp; - $buffer.=tag($_,'v'); + if ($poetic_buffer) { + $_ = $poetic_buffer." ".$_; + $poetic_buffer = undef; + } + if (/{[^}]+$/) { + $poetic_buffer=$_; + next LINE; + } + s/\\footnote{(.*)}/push_footnote($1)/e; + s/\s*\\\\$//; + $buffer.=tag($_,'v')."\n"; } elsif ($verbatim) { add_to_section(tag(tag($_,"code"),"p")); } else { - $buffer.=$_; + $buffer.=" ".$_; } } if ($buffer) { - add_to_section(tag($buffer,"p")); + add_to_section(tag(flushbuffer($buffer),"p")); $buffer=""; } @@ -103,12 +146,17 @@ while (@sections) { flushsection(); } print "\n"; -## FIXME print footnotes +## print footnotes +print "\n$footnotes\n" if $footnotes; +print $pics; print ""; sub add_to_section { my $data = shift; return if ($#sections<0) ; + if ($data =~ /^\s*
/ && $sections[$#sections]->{data} !~ /^\s*
/) { + $sections[$#sections]->{data} = tag($sections[$#sections]->{data},"section")."\n"; + } $sections[$#sections]->{data}.=$data; } @@ -119,9 +167,13 @@ sub flushsection { if ($str->{title}) { $content = tag($str->{title},"title"); } - $content .= $str->{data}; + if ($str->{data} =~ /^\s*$/s) { + $content .= "

\n

"; + } else { + $content .= $str->{data}; + } if ($#sections >=0) { - add_to_section(tag($content,$tag)); + add_to_section(tag($content,$tag)."\n"); } else { print tag($content,$tag); } @@ -147,6 +199,34 @@ sub pushsection { sub tag { my ($content,$name) = @_; - return "" if ($content eq "\n"); + $content =~s/^\s+//s; + return "" unless $content; return "<$name>$content"; } + +sub flushbuffer { + local $_ = shift; + s/{\\(em|it|bf)(?:\s+|{})([^{}]+)}/$2<\/emphasis>/g; + s/\\(emph|textit|textbf){([^{}]+)}/$2<\/emphasis>/g; + s/\\footnote{(.*)}/push_footnote($1)/e; + s/[{}]//g; + return $_; +} + + +sub push_footnote { + my $id = "note_".(++$idseq); + $footnotes.="
".tag(shift,'p')."
\n"; + return "$idseq"; +} + +sub mkbinary { + my ($filename,$id) = @_; + my $f; + open $f,"<",$filename; + binmode $f; + local $/; + my $data = encode_base64(<$f>); + return "$data\n"; + close $f; +}