2 # txt2html --- simple script to convert my site's txt files to html
4 # Copyright (C) 2014-2021 all contributors <meta@public-inbox.org>
5 # Copyright (c) 2021 Amin Bandali <bandali@gnu.org>
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as
9 # published by the Free Software Foundation, either version 3 of the
10 # License, or (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Affero General Public License for more details.
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 # This simple script borrows from the wonderful `txt2pre' from
21 # public-inbox.git, under AGPLv3+, with a few additions of my own.
28 qr{([\
('!])?\b((?:ftps?|https?|nntps?|imaps?|s?news|gopher)://
30 (?:[a-z0-9\-\._~!\$\&\';\(\)\*\+,;=:@/%]*)
31 (?:\?[a-z0-9\-\._~!\$\&\';\(\)\*\+,;=:@/%]+)?
32 (?:\#[a-z0-9\-\._~!\$\&\';\(\)\*\+,;=:@/%\?]+)?
37 "(" => qr/(\)[\.,;\+]?)\z/, # Markdown (,), Ruby (+) (, for arrays)
38 "'" => qr/('[\.,;\+]?)\z/, # Perl / Ruby
39 "!" => qr/(![\.,;\+]?)\z/, # Perl / Ruby
52 $s =~ s/([&<>])/$html_map{$1}/sge;
63 # it's fairly common to end URLs in messages with
64 # '.', ',' or ';' to denote the end of a statement;
65 # assume the intent was to end the statement/sentence
67 if (defined(my $re = $pairs{$beg})) {
68 if ($url =~ s/$re//) {
71 } elsif ($url =~ s/(\))?([\.,;])\z//) {
73 # require ')' to be paired with '('
74 if (defined $1) { # ')'
75 if (index($url, '(') < 0) {
81 } elsif ($url !~ /\(/ && $url =~ s/\)\z//) {
85 $beg . "<a href
=\"$url\">$url</a
>" . $end;
91 my $txt = do { local $/; <STDIN> };
92 my $title = html_esc($txt =~ /\A([^\n]+)/);
93 $title =~ s/^\s+|\s+$//g;
94 if ($ARGV[0] and $ARGV[0] eq 'fa') {
95 $title .= ' — بندعلی' if $title !~ /بندعلی/;
97 $title .= ' — bandali' if $title !~ /bandali/;
100 $txt = linkify(html_esc($txt));
102 print('<!doctype html>',
103 ($ARGV[0] and $ARGV[0] eq 'fa')
104 ? '<html lang="fa
" dir="rtl
">'
108 http-equiv="Content
-Type
"
109 content="text
/html
; charset
=utf
-8"
111 "<title
>$title</title
>",
112 ($ARGV[0] and $ARGV[0] eq 'fa')
113 ? "\n<style
>\
@font-face
{font
-family
:sahel
;font
-weight
:normal
;
114 src
:local('Sahel WOL'),local('Sahel'),
115 url
('sahel.woff2')format
('woff2');}pre
{font
-family
:sahel
}</style
>\n"
117 '</head><body><pre>', $txt, '</pre></body></html>');