X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/d3adcff4a931922ad5ee52154cf78a7a339835cf..212ec2e606552fdfa9fcd970a5e27a7dc9ce0042:/txt2html diff --git a/txt2html b/txt2html index 128995c..e6dc30b 100644 --- a/txt2html +++ b/txt2html @@ -23,6 +23,13 @@ use strict; use warnings 'all'; +use Getopt::Long; + +my $opt_lang = 'en'; +my $opt_index; +GetOptions ('lang=s' => \$opt_lang, + 'index' => \$opt_index) + or die("bad command line arguments\n"); my $link_re = qr{([\('!])?\b((?:ftps?|https?|nntps?|imaps?|s?news|gopher):// @@ -89,30 +96,51 @@ sub linkify { my $txt = do { local $/; }; + my $title = html_esc($txt =~ /\A([^\n]+)/); $title =~ s/^\s+|\s+$//g; -if ($ARGV[0] and $ARGV[0] eq 'fa') { +if ($opt_lang eq 'fa') { $title .= ' — بندعلی' if $title !~ /بندعلی/; } else { $title .= ' — bandali' if $title !~ /bandali/; } +my ($upd, $pub, $url) = $txt =~ /(.*)\r?\n(.*)\r?\n(.*)\r?\n?\z/; +($upd) = $upd =~ /(?:updated|ویرایش): (.*)/ if $upd; +($pub) = $pub =~ /(?:published|انتشار): (.*)/ if $pub; +($url) = $url =~ /(?:plain text|متن ساده): (.*)/ if $url; +$url = 'https://bndl.org/bandali-cv.txt' + if (!$url and $title =~ /curriculum vitae/); +$url = html_esc($url) if $url; + $txt = linkify(html_esc($txt)); -print('', - ($ARGV[0] and $ARGV[0] eq 'fa') - ? '' - : '', - '', - '', - "$title", - ($ARGV[0] and $ARGV[0] eq 'fa') - ? "\n\n" +url('sahel.woff2')format('woff2');}pre{font-family:sahel}) : '', - '
', $txt, '
'); + "\n", + "
$txt
\n"); STDOUT->flush;