-
Notifications
You must be signed in to change notification settings - Fork 0
/
txt2tags-0.4.sh
executable file
·708 lines (687 loc) · 23.4 KB
/
txt2tags-0.4.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
#!/bin/sh
# txt2tags - a generic tagged language text generator
#
# 20010726 <[email protected]> ** debut
# TODO || moincel ||, TABcel1TABcel2, --- forget table for now.
# TODO allow lists inside quotes? (mgp TAB problems)
# TODO =title=[label] for "local" links (HTML)
# TODO mgp: subquote (increase prefix) ----mmmm, maybe not (big letters, few hspace)
# TODO pm6 : check quote
# TODO moin: list should have leading spaces
#
# BUG: sgml: title after quote left a blank line before </quote>
#
#i pm6: paragraph == 1 line
#
# 20010727 ++mgp: prefix " " for all lines
# ++mgp: ^% scape with prefix
# 20010730 ++comments MUST be at ^
# 20010928 ++man target, ++shell wrapper & py together
# 20011109 ++["label" url] tag, ++%%date(fmt)
# 20020104 ++simple table support (with \t TAB \t separated \t fields)
# 20020311 ++lots of fixes on man target: bold, ita, title, pre, lists
# ++ smarter URL matcher, preformatted lines indented
# ++--help, --version
Usage(){
local ver types name=${0##*/}
ver=`sed "/^#my_version = '/!d;s///" $0`
types=`sed "/^#tags = /!d;s///;s/[][']//g" $0`
echo "\
$name version ${ver%?} <http://txt2tags.sf.net>
usage: $name -t <type> [--stdout] file.txt
$name -t html -s <split level> -l <lang> file.txt
-t, --type target document type. actually supported:
$types
--stdout by default, the output is written to file.<type>
with this option, STDOUT is used (no files written)
extra options for HTML target (needs sgml-tools):
-s, --split split documents. values: 0, 1, 2 (default 0)
-l, --lang document language (default english)
"
exit 1
}
# defaults
stdout=0
split=0
lang=english
case "$1" in
-h|--help) Usage;;
-V|--version) Usage | sed q; exit ;;
esac
while [ "$2" ]; do
case "$1" in
-t|--type) [ "$2" ] || Usage; shift; doctype=$1;;
-s|--split) [ "$2" ] || Usage; shift; split=$1;;
-l|--lang) [ "$2" ] || Usage; shift; lang=$1;;
--stdout) stdout=1 ;;
*) Usage;;
esac
shift
done
[ "$1" ] || Usage
TXT="$1"
[ -f "$TXT" ] || {
echo "file $TXT not found! aborting..."
exit 1
}
name=`basename $TXT .txt`
D=$PWD
#TXT="$D/$TXT"
letsdoit(){ sed "1,/^##@##/d;s/^#//" $0 | python - "$@"; } # cool huh? &:)
fecho(){ echo -e "\033[1m--- $*...\033[m" ; } # fancyness
checkdoc(){ [ ! -f "$D/$name.$1" -o "$D/$name.$1" -ot "$TXT" ] && doAll $1; }
dodoc(){
local type=$1
if [ $stdout -eq 1 ]; then
letsdoit --type $type $TXT
elif [ "$type" == "txt" ]; then
echo 'hey, --type txt requires --stdout!'
echo '"shoot on the foot" does mean something to you? &:)'
# yes, i've got my sample.txt file deleted, then i did this safety test...
else
fecho $type; letsdoit --type $type $TXT > $D/$name.$type
echo "wrote $D/$name.$type"
fi
}
doAll(){
case "$1" in
txt|sgml|pm6|mgp|moin|man)
dodoc $1
;;
html)
[ $split -eq 0 ] && { dodoc $1; return; }
### for splitted html, sgml2html does the job
# html target dir
[ -d "$D/$name" ] || mkdir "$D/$name"
# we have to have an updated .sgml
checkdoc sgml
# let's go!
fecho splitted html
cd $D/$name ; rm -f $name{,-[0-9]*}.html
sgml2html --language=$lang --split=$split $D/$name.sgml
ln -sf $name.html index.html
;;
ps)
fecho $1
checkdoc sgml
sgml2latex -o $1 --language=$lang $D/$name.sgml
;;
pdf)
fecho $1
checkdoc ps
ps2pdf $D/$name.ps
;;
*)
Usage
esac
}
doAll $doctype
##@##
#import re, string, os, sys
#from time import strftime,time,localtime
#
#my_url = 'http://txt2tags.sourceforge.net'
#my_email = '[email protected]'
#my_version = '0.4'
#
#usage = 'usage: %s --type <type> file.txt\n'%(sys.argv[0])
#
## soon i'll use getopts &:)
#if len(sys.argv) != 4:
# print usage
# sys.exit(1)
#
#doctype = sys.argv[2]
#file = sys.argv[3]
#
#tags = ['txt', 'sgml', 'html', 'pm6', 'mgp', 'moin', 'man']
#try: T = tags.index(doctype)
#except ValueError:
# print "invalid type '%s'"%(doctype)
# print usage
# sys.exit(1)
#
#if not os.path.isfile(file):
# print 'file not found: '+file
# sys.exit(1)
#
#### all the registered tags
#TAGparagraph = ['', '<p>', '<P>', '<@Normal:>', '%font "normal", size 5\n', '', '.P']
#TAGtitle1 = [' \a' , '<sect>\a<p>' , '<H1>\a</H1>', '\n<@Title1:>\a', '%page\n\n\a', '= \a =', '.SH \a']
#TAGtitle2 = ['\t\a' , '<sect1>\a<p>', '<H2>\a</H2>', '\n<@Title2:>\a', '%page\n\n\a', '== \a ==', '.SS \a']
#TAGtitle3 = ['\t\t\a' , '<sect2>\a<p>', '<H3>\a</H3>', '\n<@Title3:>\a', '%page\n\n\a', '=== \a ===', '.SS \a']
#TAGtitle4 = ['\t\t\t\a' , '<sect3>\a<p>', '<H4>\a</H4>', '\n<@Title4:>\a', '%page\n\n\a', '==== \a ====', '.SS \a']
#TAGtitle5 = ['\t\t\t\t\a', '<sect4>\a<p>', '<H5>\a</H5>', '\n<@Title5:>\a', '%page\n\n\a', '===== \a =====', '.SS \a']
#TAGareaPreOpen = ['', '<tscreen><verb>', '<PRE>', '<@PreFormat:>', '\n%font "mono"', '{{{', '.nf']
#TAGareaPreClose = ['', '</verb></tscreen>', '</PRE>', '', '%font "normal"', '}}}', '.fi\n']
#TAGareaQuoteOpen = [' ', '<quote>', '<BLOCKQUOTE>', '<@Quote:>', '%prefix " "', ' ', '\n']
#TAGareaQuoteClose = ['', '</quote>', '</BLOCKQUOTE>', '', '%prefix " "', '', '\n']
#TAGfontMonoOpen = ['', '<tt>', '<CODE>', '<FONT "Lucida Console"><SIZE 9>', '\n%cont, font "mono"\n', '{{{', '']
#TAGfontMonoClose = ['', '</tt>', '</CODE>', '<SIZE$><FONT$>', '\n%cont, font "normal"\n', '}}}', '']
#TAGfontBoldOpen = ['', '<bf>', '<B>', '<B>', '\n%cont, font "normal-b"\n', "'''", r'\\fB']
#TAGfontBoldClose = ['', '</bf>', '</B>', '<P>', '\n%cont, font "normal"\n', "'''", r'\\fP']
#TAGfontItalicOpen = ['', '<em>', '<I>', '<I>', '\n%cont, font "normal-i"\n', "''", r'\\fI']
#TAGfontItalicClose = ['', '</em>', '</I>', '<P>', '\n%cont, font "normal"\n', "''", r'\\fP']
#TAGfontBoldItalicOpen = ['', '<bf><em>', '<B><I>', '<B><I>', '\n%cont, font "normal-bi"\n', "'''''", '\n.BI ']
#TAGfontBoldItalicClose = ['', '</em></bf>', '</I></B>', '<P>', '\n%cont, font "normal"\n', "'''''", '\n\\&']
#TAGfontUnderlineOpen = ['', TAGfontBoldItalicOpen[1], '<U>', '<U>', '\n%cont, fore "cyan"\n', TAGfontBoldItalicOpen[5], '']
#TAGfontUnderlineClose = ['', TAGfontBoldItalicClose[1], '</U>', '<P>', '\n%cont, fore "white"\n', TAGfontBoldItalicClose[5], '']
#TAGlistOpen = ['', '<itemize>', '<UL>', '<@Bullet:>', '', '', '\n'+TAGareaPreOpen[6]]
#TAGlistClose = ['', '</itemize>', '</UL>', '', '', '', TAGareaPreClose[6]]
#TAGlistItem = ['- ', '<item>', '<LI>', '• ', '', ' * ', '* ']
#TAGbar1 = ['\a', '<!-- \a -->', '<HR NOSHADE SIZE=1>', '\a', '%bar "white" 5', '----', '\n\n']
#TAGbar2 = ['\a', '<!-- \a -->', '<HR NOSHADE SIZE=5>', '\a', '%pause', '----', '\n\n']
#TAGurl = ['\a', '<htmlurl url="\a" name="\a">', '<A HREF="\a">\a</A>', TAGfontUnderlineOpen[3]+'\a'+TAGfontUnderlineClose[3], '\n%cont, fore "cyan"\n\a\n%cont, fore "white"\n', '[\a]', '\a']
#TAGurlMark = ['\a (\a)', TAGurl[1], TAGurl[2], '\a '+TAGurl[3], '\a '+TAGurl[4], '[\a \a]', '\a (\a)']
#TAGemail = ['\a', '<htmlurl url="mailto:\a" name="\a">', '<A HREF="mailto:\a">\a</A>', '\a', TAGurl[4], '[\a]', '\a']
#TAGemailMark = ['\a (\a)', TAGemail[1], TAGemail[2], '\a '+TAGemail[3], '\a '+TAGemail[4], '[\a \a]', '\a (\a)']
#TAGemail = ['\a', '<htmlurl url="mailto:\a" name="\a">', '<A HREF="mailto:\a">\a</A>', '\a', TAGurl[4], '[\a]', '\a']
#TAGimg = ['[\a]', '<figure><ph vspace=""><img src="\a"></figure>', '<P ALIGN=CENTER><IMG SRC="\a"></P>', '\a', '\n%center\n%newimage -yscrzoom 50"\a", left\n', '[\a]', '\a']
#TAGEOD = ['', '</article>', '</BODY></HTML>', '', '%%EOD', '', '']
#
#
#### the cool regexes
#re_title = re.compile(r'^\s*(?P<tag>={1,5})(?P<txt>[^=].*[^=])\1(\[(?P<label>\w+)\])?$')
#re_areaPreOpen = re_areaPreClose = re.compile(r'^---$')
#re_quote = re.compile(r'^\t+')
#re_1linePreOld = re.compile(r'^ {4}([^\s-])')
#re_1linePre = re.compile(r'^--- ')
#re_mono = re.compile(r'`([^`]+)`')
#re_bold = re.compile(r'\*\*([^\s*].*?)\*\*')
#re_italic = re.compile(r'(^|[^:])//([^ /].*?)//')
#re_underline = re.compile(r'__([^_].*?)__')
#re_bolditalic = re.compile(r'\*/([^/].*?)/\*')
#re_list = re.compile(r'^( *)- ([^ ])')
#re_bar =re.compile(r'^\s*([_=-]{20,})\s*$')
#re_table = re.compile(r'^ *\|\|?[<:>]*\s')
#
## link things
#urlskel = {
# 'id': r'(?i)((https?|ftp|news|telnet|gopher|wais)://|(www[23]?\.|ftp\.))',
# 'chars' : r'A-Za-z0-9%._/~:,-', # %20(space), :80(port)
# 'anchor': r'A-Za-z0-9%.-', # %nn(encoded)
# 'form' : r'A-Za-z0-9%&=+.@*_-', # .@*_-(as is)
# 'punct' : r'.,;:!?'
#}
#retxt_url = r'\b%s[%s]+(#[%s]+|\?[%s]+)?(?=[%s]|[^%s])\b'%(urlskel['id'],urlskel['chars'],
# urlskel['anchor'],urlskel['form'],urlskel['punct'],urlskel['form'])
#retxt_email = r'[A-Za-z0-9_.-]+@[A-Za-z0-9_.-]{4,}'
#re_link = re.compile(r'%s|%s'%(retxt_url,retxt_email))
#re_linkmark = re.compile(r'\["(.*?)" (%s|%s)\]'%(retxt_url, retxt_email))
#
#re_x = re.compile('\a')
#re_blankline = re.compile(r'^\s*$')
#re_comment = re.compile(r'^//')
#re_date = re.compile(r'%%date\b(\((?P<fmt>.*?)\))?', re.I)
#re_img = re.compile(r'\[([\w_,.+%$#@!?+~/-][\w_,.+%$#@!?+~/ -]+\.(png|jpe?g|gif|eps|bmp))\]', re.L+re.I)
#
## the defaults
#title = 'document title'
#author = 'author name'
#currdate = strftime('%Y%m%d',localtime(time())) # ISO current date
#date = currdate
#f_tt = 0
#listident = []
#f_header = 0
#f_lastblank = 0
#holdspace = ''
#listholdspace = ''
#quotedepth = 0
#skip_continue = 0
#istable = 0
#tablealign = []
#linkmask = '@@_@_@@'
#
#
#def printHeader(title, author, date):
# title = title.strip()
# author = author.strip()
# date = date.strip()
# if doctype == 'txt':
# print "%s\n%s\n%s"%(title,author,date)
# elif doctype == 'sgml':
# print "<!doctype linuxdoc system>\n<article>"
# print "<title>%s\n<author>%s\n<date>%s\n" %(title,author,date)
# elif doctype == 'html':
# print '<HTML>\n<HEAD><TITLE>%s</TITLE></HEAD>'%title
# print '<BODY BGCOLOR="white" TEXT="black">'
# print '<P ALIGN="center"><CENTER><H1>%s</H1>'%title
# print '<FONT SIZE=4><I>%s</I><BR>\n%s</FONT></CENTER>\n'%(author,date)
# elif doctype == 'man':
# # TODO man section 1 is hardcoded...
# print '.TH "%s" 1 %s "%s"'%(title,date,author)
# elif doctype == 'pm6':
# # TODO style to <HR>
# # TODO unix2dos before apply
# print """\
#<PMTags1.0 win><C-COLORTABLE ("Preto" 1 0 0 0)
#><@Normal=
# <FONT "Times New Roman"><CCOLOR "Preto"><SIZE 11>
# <HORIZONTAL 100><LETTERSPACE 0><CTRACK 127><CSSIZE 70><C+SIZE 58.3>
# <C-POSITION 33.3><C+POSITION 33.3><P><CBASELINE 0><CNOBREAK 0><CLEADING -0.05>
# <GGRID 0><GLEFT 7.2><GRIGHT 0><GFIRST 0><G+BEFORE 7.2><G+AFTER 0>
# <GALIGNMENT "justify"><GMETHOD "proportional"><G& "ENGLISH">
# <GPAIRS 12><G% 120><GKNEXT 0><GKWIDOW 0><GKORPHAN 0><GTABS $>
# <GHYPHENATION 2 34 0><GWORDSPACE 75 100 150><GSPACE -5 0 25>
#><@Bullet=<@-PARENT "Normal"><FONT "Abadi MT Condensed Light">
# <GLEFT 14.4><G+BEFORE 2.15><G% 110><GTABS(25.2 l "")>
#><@PreFormat=<@-PARENT "Normal"><FONT "Lucida Console"><SIZE 8><CTRACK 0>
# <GLEFT 0><G+BEFORE 0><GALIGNMENT "left"><GWORDSPACE 100 100 100><GSPACE 0 0 0>
#><@Title1=<@-PARENT "Normal"><FONT "Arial"><SIZE 14><B>
# <GCONTENTS><GLEFT 0><G+BEFORE 0><GALIGNMENT "left">
#><@Title2=<@-PARENT "Title1"><SIZE 12><G+BEFORE 3.6>
#><@Title3=<@-PARENT "Title1"><SIZE 10><GLEFT 7.2><G+BEFORE 7.2>
#><@Title4=<@-PARENT "Title3">
#><@Title5=<@-PARENT "Title3">
#><@Quote=<@-PARENT "Normal"><SIZE 10><I>>
#"""
# elif doctype == 'mgp':
# print """\
##!/usr/X11R6/bin/mgp -t 90
#%deffont "normal" xfont "utopia-medium-r", charset "iso8859-1"
#%deffont "normal-i" xfont "utopia-medium-i", charset "iso8859-1"
#%deffont "normal-b" xfont "utopia-bold-r", charset "iso8859-1"
#%deffont "normal-bi" xfont "utopia-bold-i", charset "iso8859-1"
#%deffont "mono" xfont "courier-medium-r", charset "iso8859-1"
#%default 1 size 5
#%default 2 size 8, fore "yellow", font "normal-b", center
#%default 3 size 5, fore "white", font "normal", left, prefix " "
#%tab 1 size 4, vgap 30, prefix " ", icon arc "red" 40, leftfill
#%tab 2 prefix " ", icon arc "orange" 40, leftfill
#%tab 3 prefix " ", icon arc "brown" 40, leftfill
#%tab 4 prefix " ", icon arc "darkmagenta" 40, leftfill
#%tab 5 prefix " ", icon arc "magenta" 40, leftfill
#%%%%%%%%%%%%%%%%%%%%%%%%%% end of headers %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#%page
#"""
# # 1st title page
# print '\n\n\n\n%%size 10, center, fore "yellow"\n%s'%title
# print '\n%%font "normal-i", size 6, fore "white", center\n%s'%author
# print '\n%%font "mono", size 7, center\n%s'%date
#
#def printFooter():
# txt = '%s code generated by txt2tags %s (%s)'%(doctype,my_version,my_url)
# if doctype == 'sgml' or doctype == 'html': print "<!-- %s -->"%txt
# elif doctype == 'mgp': print "%%%% %s"%txt
# elif doctype == 'man': print '.\\" %s'%txt
# print TAGEOD[T]
#
#def doEscape(txt):
# if doctype == 'html' or doctype == 'sgml':
# txt = re.sub('&','&',txt)
# txt = re.sub('<','<',txt)
# txt = re.sub('>','>',txt)
# if doctype == 'sgml': txt = re.sub('ÿ','ÿ',txt)
# elif doctype == 'pm6' : txt = re.sub('<','<\#60>',txt)
# elif doctype == 'mgp' : txt = re.sub('^%([^%])','%prefix ""\n %\n%cont, prefix " "\n\\1',txt)
# elif doctype == 'man' : txt = re.sub('^\.', ' .',txt) # command ID
# return txt
#
#def doEscapeEscape(txt):
# while re.search(r'\\<', txt):
# txt = re.sub(r'\\<','<\#92><',txt)
# return txt
#
#
#################################################################################
####MerryChristmas,IdontwanttofighttonightwithyouImissyourbodyandIneedyourlove###
#################################################################################
#
## reading our source file
#f = open(file, 'r')
#lines = f.readlines()
#f.close
#
## let's mark it up!
#linenr = 0
#for lineref in range(len(lines)):
# urlbank = [] ; emailbank = []
# linkbank = []
# linenr = lineref +1
# line = string.rstrip(lines[lineref])
#
# # we need (not really) to mark each paragraph
# if doctype == 'pm6' and f_lastblank:
# if f_tt or f_header or listident: holdspace = ''
# else: holdspace = TAGparagraph[T]
#
## PRE-formatted area
# # we'll never support beautifiers inside pre-formatted
# if f_tt:
# line = doEscape(line)
#
# # closing PRE
# if re_areaPreClose.search(line):
# if doctype != 'pm6': print TAGareaPreClose[T]
# f_tt = 0
# continue
#
# # normal PRE-inside line
# if doctype == 'pm6': line = doEscapeEscape(line)
# elif doctype in ('txt', 'man', 'html'): line = ' '+line # align
# print line
# continue
#
# # detecting PRE
# if re_areaPreOpen.search(line):
# line = doEscape(line)
#
# if f_tt:
# print "%d:opening PRE-formatted tag without closing previous one" %linenr
# print line
# continue
#
# print TAGareaPreOpen[T]
# f_tt = 1
# continue
#
## one line PRE-formatted text
# if re_1linePre.search(line):
# line = doEscape(line)
# line = re_1linePre.sub('',line)
# if doctype == 'pm6': line = doEscapeEscape(line)
# if doctype in ('txt', 'man', 'html'): line = ' '+line # align
# print '%s\n%s\n%s'%(TAGareaPreOpen[T],line,TAGareaPreClose[T])
# continue
#
## protect URLs and emails from escaping and formatting
# if not f_tt:
# while re_link.search(line): # search for url or email
# m = re_link.search(line) # first match simple link
# label = ''; link = m.group()
# i1 = m.start() # it started here
# m = re_linkmark.search(line) # try named link
# if m: # started before, it IS a n.link
# if m.start() < i1: label = m.group(1) # setting label
# linkbank.append([label, link]) # saving link data
# # protect links changing them by a mask
# if label: line = re_linkmark.sub(linkmask,line,1)
# else: line = re_link.sub( linkmask,line,1)
#
# line = doEscape(line)
#
#
## blank lines
# #TODO "holdspace" to save <p> to not show in closelist
# if re_blankline.search(line):
#
# if istable:
# if doctype == 'html': print '</table>'
# else: print TAGareaPreClose[T]
# istable = 0
# continue
#
# if f_lastblank: # 2nd consecutive blank line
# if listident: # closes list (if any)
# while len(listident):
# if TAGlistClose[T]: # man tags must be at ^
# if doctype == 'man': print TAGlistClose[T]
# else: print listident[-1]+TAGlistClose[T]
# del listident[-1]
# continue # consecutive blanks are trash
#
# if f_header or linenr == 1: # 1st blank after header (if any)
# printHeader(title,author,date)
# if doctype != 'pm6': print TAGparagraph[T]
# f_header = 0 # we're done with header
# continue
#
# # normal blank line
# if doctype != 'pm6':
# # paragraph (if any) is wanted inside lists also
# if doctype == 'html' or listident:
# print TAGparagraph[T]
# # sgml: the quote close tag must not be \n\n</quote>
# elif doctype == 'sgml' and quotedepth:
# skip_continue = 1
# # otherwise we just print a blank line
# else: print
#
# f_lastblank = 1
# if not skip_continue: continue
# else:
# f_lastblank = 0 # reset blank status
#
#
## comments
# # just skip them
# if re_comment.search(line):
# f_lastblank = 1
# continue
#
#
#
## HR line
# if re_bar.search(line):
# txt = re_bar.search(line).group(1)
# if txt[0] == '=': bar = TAGbar2[T]
# else : bar = TAGbar1[T]
# line = re_bar.sub(bar,line)
# print re_x.sub(txt,line)
# continue
#
#
## quote
# if re_quote.search(line):
# currquotedepth = len(re_quote.search(line).group(0)) # number of TABs
# if doctype == 'sgml' and quotedepth and currquotedepth > quotedepth: currquotedepth = quotedepth
# if not TAGareaQuoteClose[T]:
# line = re_quote.sub(TAGareaQuoteOpen[T]*currquotedepth, line)
# else:
# # new (sub)quote
# if not quotedepth or currquotedepth > quotedepth:
# quotedepth = currquotedepth
# print TAGareaQuoteOpen[T]
#
# if doctype != 'html'and doctype != 'sgml':
# line = re_quote.sub('', line)
#
# # closing quotes
# while currquotedepth < quotedepth:
# quotedepth = quotedepth-1
# print TAGareaQuoteClose[T]
# else:
# # closing quotes
# while quotedepth:
# quotedepth = quotedepth-1
# print TAGareaQuoteClose[T]
#
#
## list
# if re_list.search(line) and doctype != 'txt':
# listitemident = re_list.search(line).group(1)
#
# # new sublist
# if not listident or len(listitemident) > len(listident[-1]):
# listident.append(listitemident)
# openlist = listident[-1]+TAGlistOpen[T]
# if doctype == 'pm6': listholdspace = openlist
# else:
# if string.strip(openlist): print openlist
#
# # closing sublists
# while len(listitemident) < len(listident[-1]):
# if TAGlistClose[T]: # man tags must be at ^
# if doctype == 'man': print TAGlistClose[T]
# else: print listident[-1]+TAGlistClose[T]
# del listident[-1]
#
# # normal item
# listid = listident[-1]
# if doctype == 'mgp': listid = len(listident)*'\t'
# line = re_list.sub(listid+TAGlistItem[T]+r'\2',line)
# if listholdspace:
# line = listholdspace+line
# listholdspace = ''
# if doctype == 'sgml': line = re.sub(r'\[', r'[', line)
#
#
## title
# #TODO set next blank and set f_lastblank or f_lasttitle
# if re_title.search(line) and not listident:
# m = re_title.search(line)
# tag = m.group('tag')
# tag = eval('TAGtitle'+`len(tag)`+'[T]')
#
# txt = string.strip(m.group('txt'))
# if doctype == 'sgml': txt = re.sub(r'\[', r'[', txt)
# if doctype == 'sgml': txt = re.sub(r'\\', r'\', txt)
#
# line = re_title.sub(tag,line)
# print re_x.sub(txt,line)
# continue
#
## labeltxt = ''
## label = m.group('label')
## if label: labeltxt = '<label id="%s">' %label
#
#
## table
##TODO escape undesired format inside table
##TODO not rstrip if table line (above)
# #if re_table.search(line) and doctype == 'html': # only HTML for now
# if re_table.search(line): # only HTML for now
#
# if not istable: # table header
# if doctype == 'html':
# print '<table align=center border=1>'
# else:
# print TAGareaPreOpen[T]
#
# istable = 1
#
# if doctype == 'html':
# line = re.sub(r'^ *' , '', line) # del leading spaces
# line = re.sub(r'\| *$', '', line) # del final bar |
#
# tablefmt, tablecel = re.split(r'\s', line, 1)
# tablefmt = tablefmt[1:] # cut mark off
# tablecel = re.split(r'\t\|?| \|', tablecel)
# line = ''
# celltag = 'td'
# if tablefmt and tablefmt[0] == '|': celltag = 'th' # table title!
# if tablecel:
# for cel in tablecel:
# if not cel and doctype == 'html': cel = ' '
# else: cel = cel.replace('\|', '|') # user escaped (not delim!)
# line = line+'<%s>%s</%s>\n'%(celltag,cel.strip(),celltag)
# line = '<tr>\n%s</tr>'%line
#
#
#
#### BEGIN of at-any-part-of-the-line/various-per-line TAGs.
#
## date
# if re_date.search(line):
# m = re_date.search(line)
# fmt = m.group('fmt')
# if fmt: currdate = strftime(fmt,localtime(time()))
# line = re_date.sub(currdate,line)
#
## bold
# if re_bold.search(line):
# txt = r'%s\1%s'%(TAGfontBoldOpen[T],TAGfontBoldClose[T])
# line = re_bold.sub(txt,line)
## if doctype == 'man':
## line = re.sub((TAGfontBoldItalicOpen[T]) ,r'\1',line)
#
## italic
# if re_italic.search(line):
# txt = r'\1%s\2%s'%(TAGfontItalicOpen[T],TAGfontItalicClose[T])
# line = re_italic.sub(txt,line)
#
## bolditalic
# if re_bolditalic.search(line):
# txt = r'%s\1%s'%(TAGfontBoldItalicOpen[T],TAGfontBoldItalicClose[T])
# line = re_bolditalic.sub(txt,line)
#
## underline
# if re_underline.search(line):
# txt = r'%s\1%s'%(TAGfontUnderlineOpen[T],TAGfontUnderlineClose[T])
# line = re_underline.sub(txt,line)
#
## image
# if re_img.search(line):
# txt = re_img.search(line).group(1)
# line = re_img.sub(TAGimg[T],line)
# line = re_x.sub(txt,line)
#
# if doctype == 'sgml': line = re.sub(r'\[', r'[', line)
#
## font PRE
# if re_mono.search(line):
# txt = r'%s\1%s'%(TAGfontMonoOpen[T],TAGfontMonoClose[T])
# line = re_mono.sub(txt,line)
#
#
## URL & email
# for link in linkbank:
# linktype = 'url'; label = link[0]; url = link[1]
# if re.search(retxt_email, url): linktype = 'email'
#
# if not label: # simple link
# line = eval('line.replace(linkmask,TAG%s[T],1)'%linktype)
# line = re_x.sub(url,line)
# else: # named link!
# # putting data on the right appearance order
# urlorder = [label, url] # label before link
# if doctype in ('html', 'sgml', 'moin'): # link before label
# urlorder = [url, label]
#
# # replace mask with tag
# line = eval('line.replace(linkmask,TAG%sMark[T],1)'%linktype)
# for data in urlorder: # fill \a from tag with data
# line = re_x.sub(data,line,1)
#
#
## header
# if linenr == 1:
# title = line
# f_header = 1
# continue
# if f_header:
# if linenr == 2:
# author = line
# continue
# elif linenr == 3:
# date = line
# continue
# else:
# printHeader(title,author,date)
# f_header = 0
#
# # FINAL scapes. TODO function for it
# # convert all \ before <...> to tag
# if doctype == 'pm6': line = doEscapeEscape(line)
# elif doctype == 'man' : line = re.sub('-',r'\-',line)
#
# if listident: holdspace = ''
# print holdspace+line
# holdspace = ''
#
#printFooter()
#
#
#
#### RESOURCES
## html: http://www.w3.org/TR/WD-html-lex
## man: man 7 man
## sgml: www.linuxdoc.org
## sgml:
## <table>
## <tabular ca="cl">
## cel1-1<colsep>cel1-2<rowsep>
## cel2-1<colsep>cel2-2<rowsep>
## </tabular>
## </table>
## pm6: <font$> volta ao normal do estilo
## pm6: <#comentários#> <font #comment# $>
## pagemaker table
## 1 = 0,55
## 2 = 1,10
## 3 = 1,65
## 4 = 2,20
##
## |__1_| | | | | |
## |_______2_| | | | |
## |____________3_| | | |