This repository has been archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtips.t2t
1040 lines (731 loc) · 32 KB
/
tips.t2t
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
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
txt2tags
Tips & Tricks
%!includeconf: inc/config.t2t
%!postproc: '(?i)(<body)' '\1 id="tips"'
%!postproc: '(?i)(</title>)' ' tips\1'
%!options: --toc
% Trick to remove the "0." from titles
%!postproc: (<H2.*?>)0\. \1
% Trick to take the title number out of the link on TOC
%!postproc: '(<LI>)(<A HREF="#[^"]*">)0.([0-9]+. )' '\1\3\2'
% Automatic links for txt2tags-world glossary
%!preproc: '(?i)(config area)' '[\1 userguide/ConfigArea.html]'
%!preproc: '(PreProc)' '[\1 userguide/PreProc.html]'
%!preproc: '(PostProc)' '[\1 userguide/PostProc.html]'
%!preproc: '(Encoding directive)' '[\1 userguide/Encoding.html]'
%!preproc: '(Style directive)' '[\1 userguide/Style.html]'
% Highlight them
%!postproc: '\b(BAD|GOOD)\b' '<b>\1</b>'
% Highlight command line on samples
%!postproc: '(\$ )(txt2tags.*)' '\1<b>\2</b>'
% Make strike text sample really struck
%!postproc: '(STRIKE)\.$' '<s>\1</s>.'
%!postproc: {TM} ™
% Handy shortcut for common text
%!preproc: 'RCFILE (.*)' If you want to use this \1 for all your files, put it on the [txt2tags RC File userguide/UserConfigurationFileRCFile.html].
%!include: inc/menu.t2t
%todo: How to I convert to... (PDF, etc)
%TODO: on tex (and lout?) the strong bar means page break
%TODO: No, you can't link a title, it's an implementation decision. But, with the postproc filters you can add it for yourself:
% %!postproc(html): '(Your title)' '<a href="http://www.foo.com">\1</a>
%TODO:
% Just make this filter on the config area (line 4):
% %!postproc: MYFORMULA $y=x^2$
% And write your text. When you need to insert the formula, just do:
% some math MYFORMULA
% And it will be expanded accordingly.
%%TOC
[Suggest a new tip! http://txt2tags.wordpress.com/2006/09/21/new-hot-document-tips-tricks/]
% 404 :(
% [Chinese translation. http://www.shine-it.net/txt2tags/]
% [[img/flag/zh.gif] http://www.shine-it.net/txt2tags/]
= General =[general]
++ Top 4 user mistakes ++[top-mistakes]
% by Jic
+ Forget to close lists with **two** blank lines (or with an empty
item)
```
BAD GOOD
- My cool list - My cool list
- Should end here - Ends here
= No, not a title =
= Title =
```
+ Forget to "glue" the marks with their contents, leaving unwanted spaces
```
BAD GOOD
** not bold** **bold**
__not underline __ __underline__
// no way it is italic // //italic//
[invalid link ] [label link]
[ invalid_image.png ] [image.png]
```
+ Forget to add the required spaces around table cells
```
BAD GOOD
|no|it's|not|a|table| | this | is | a | table |
```
+ Forget to add leading spaces to identify nested lists
```
BAD GOOD
: definition list : definition list
- turned to bullet list? - bullet inside
+ and now it is numbered? + numbered inside bullet
- what a mess! - back to bullet
```
++ Quick document tree ++[doc-tree]
Writing a long document and suddenly get lost? Needs to edit that 50
page monster you don't touch for months? There is a quick way to get
an overview of the contents:
```
$ txt2tags --toc-only -t txt userguide.t2t
Part I - Introducing Txt2tags
The First Questions You May Have
Supported Formatting Structures
Supported Targets
Status of Supported Structures by Target
The Three User Interfaces: Gui, Web and Command Line
Part II - OK, I want it. Now what?
Download & Install Python
Download txt2tags
...
```
The ``--toc-only`` option dumps the Table of Contents of the document,
using the same target as the document's. So we force it to be clear
text with ``-t txt``. Another option that can be used is
``--enum-title`` to get nice numbers:
```
$ txt2tags --toc-only -t txt --enum-title userguide.t2t
1. Part I - Introducing Txt2tags
1.1. The First Questions You May Have
1.2. Supported Formatting Structures
1.3. Supported Targets
1.4. Status of Supported Structures by Target
1.5. The Three User Interfaces: Gui, Web and Command Line
2. Part II - OK, I want it. Now what?
2.1. Download & Install Python
2.2. Download txt2tags
...
```
If the document tree is deep, you can limit the dump to any level with the ``--toc-level`` option:
```
$ txt2tags --toc-only -t txt --enum-title --toc-level 1 userguide.t2t
1. Part I - Introducing Txt2tags
2. Part II - OK, I want it. Now what?
3. Part III - Writing and Converting Your First Document
4. Part IV - Mastering Txt2tags Concepts
5. Part V - Mastering Marks
6. Part VI - Mastering Macros
7. Part VII - Mastering Settings
8. Part VIII - Black Magic
9. Part IX - Txt2tags HISTORY
```
++ Make strike text ++[strike]
Upgrade your txt2tags to version 2.5 or newer, which has strike text support with the ``--`` mark. For example, ``--STRIKE--`` becomes STRIKE.
In older versions, some nice filters will do the trick:
```
%%% Support for --strike-- text in txt2tags older than 2.5
%
%!postproc(html): '--([^ ].*?)--' <s>\1</s>
%
%!style(tex): ulem
%!postproc(tex): --(.*?)-- \sout{\1}
```
% Thanks Otavio Cordeiro for the <!-- foo --> reminder
% Thanks Otavio Cordeiro for the LaTeX filters
% If you prefer the modern way of doing this, mark the text with a
% unique class name (say "strikeme") and define a CSS rule for it.
% ```
% %!postproc(html): '--([^ ].*?)--' <span class="strikeme">\1</span>
% % On the CSS: .strikeme { text-decoration: line-through }
% ```
RCFILE filter
++ Make case insensitive filters ++[filter-icase]
PreProc and PostProc filters are case sensitive by default. This
means that when matching, the text "txt2tags" is different from
"TXT2TAGS". If you want to make a filter that treats lower and
uppercase letters as the same (ignore case), just put a "``(?i)``" at
the beginning. Example:
``` %preproc: '(?i)latex' 'LaTeX'
This way, "latex", "LATEX", "LAtex" and all its variants will be
changed to "LaTeX".
++ Make centred aligned paragraphs ++[center-para]
In txt2tags you can't center paragraphs, but you can center a table.
So...
``` | This is a centered paragraph.
This line results in:
| This is a centered paragraph.
**Note:** There are spaces before the pipe ``|`` to make the table centred. There
are no trailing pipe at the end of the line, so this table has no
border, making it invisible.
**Note:** Yes, this is ugly and piggy. Avoid to use it.
**Note:** In (X)HTML targets, it's best to
[enclose the paragraph inside a DIV #html-custom-tags] and make a CSS
rule to center it.
++ Use a link bank to keep your text clean ++[link-bank]
If your document will use many links (URLs), the text can quickly become too
noisy and polluted. The cleaner approach is to store all the links at
the config area, making a link bank:
```
%!preproc: URLT2T http://txt2tags.org
%!preproc: URLGOOGLE http://google.com?q=txt2tags+is+cool
%!preproc: URLBLOG http://myblog.wordpress.com/2006/10/31/foo-bar-baz
```
Then you can write your text with cleaner links:
```
This site is powered by [txt2tags URLT2T]. For more information
please [read my Blog URLBLOG] or [search Google URLGOOGLE].
```
Compare this to the inline links (ugly) version:
```
This site is powered by [txt2tags http://txt2tags.org].
For more information please
[read my Blog http://myblog.wordpress.com/2006/10/31/foo-bar-baz]
or [search Google http://google.com?q=txt2tags+is+cool].
```
**Plus:** If there are links that you use all the time in your
documents (your website or blog, for example), you can make a global
link bank on an urls.t2t file, or on your
[txt2tags RC File userguide/UserConfigurationFileRCFile.html], then
all your documents can use them. The other advantage is that it makes
easy when the link changes, you just have to edit one single place.
++ Use automatic linking for "cristal clear" text ++[auto-link]
An evolution from the previous tip, you can put links automatically
for any word(s) you want.
```
%!preproc: '(?i)(txt2tags)' '[\1 http://txt2tags.org]'
%!preproc: '(Google)' '[\1 http://google.com]'
%!preproc: '(Yahoo! Groups)' '[\1 http://groups.yahoo.com]'
```
Then in your text you won't bother inserting links manually, txt2tags
will do it for you:
``` I do use Txt2tags, Google and Yahoo! Groups everyday.
Converting this text to XHTML:
```
<p>
I do use <a href="http://txt2tags.org">Txt2tags</a>,
<a href="http://google.com">Google</a> and
<a href="http://groups.yahoo.com">Yahoo! Groups</a> everyday.
</p>
```
Handy, huh? Note that the "``(?i)``" part on the first filter make it
[case insensitive #filter-icase], working for "txt2tags", "TXT2TAGS"
and any other variant.
% TODO
%++ Working with anchors (local links) ++[anchors]
%
%Every title (numbered or not) can have its own unique identifier
% remove link from TOC (so you'll fix it)
% %!postproc(html): '(?i)<a href="#toc[0-9]+">(.*?)</a>' '\1'
% shell command to find duplicates
++ Force link (URL) recognition ++[force-url]
When trying (and failing) to make some funky links like:
```
[Main page index.php?page=main]
[Product details product?id=1234567]
```
Just "protect" the link address with the raw mark and it will be converted correctly:
```
[Main page ""index.php?page=main""]
[Product details ""product?id=1234567""]
```
**Note:** This is often needed for local (relative) links only. Full URLs like www.example.com/product?id=1234567 are recognized by default.
++ Use spaces and Unicode characters in image filename ++[image-unicode]
We need to be restrictive to avoid false positives when matching texts. These are the currently allowed characters for an image filename:
``` A-Za-z0-9_,.+%$#@!?+~/-
% The image extension must end in: png, jpg, jpeg, gif, eps, bmp.
If your image filename contains spaces, accented letters or Unicode characters, just protect the filename (except the extension!) with the raw mark:
``` [""image中文"".jpg]
++ Change the default format for the %%date macro ++[date-default-format]
When used without arguments, the [""%%date"" macro userguide/date.html] expands to the current date in the ISO format: ``YYYYMMDD``. But with a nice filter, you can change this default format:
```
%!preproc: %%date %%date(%d-%m-%Y %H:%M)
```
RCFILE filter
++ Make code snippets colored (syntax highlight) ++[code-syntax]
Txt2tags doesn't colorize programming code inside verbatim blocks.
That would be plain bloat, and we're KISS.
But you can make that using any other colorizer program and save the
results to a file. Then you just include this file on the txt2tags
conversion using the [Tagged Include userguide/includecommand.html]
feature.
``` %!include(html): ''colorized-file.py.html''
If you use the [Vim editor http://vim.org], just run this command to
get you code colorized in HTML (check the path for 2html.vim on your
system):
``` vi -c "so /usr/share/vim/vim7/syntax/2html.vim|wqa" file.py
++ Insert copyright symbols: © ® {TM} ++[copyright-symbol]
You can enter the © and ® symbols directly on the source file without fuss. Just find out how to insert them in your text editor. Copy & paste also works fine (copy from here!).
**Note:**
In Vim, type ``Ctrl-K Co`` and ``Ctrl-K Rg`` in Insert mode.
The :dig command lists other symbols.
Depending on the target, you may have to specify a new file encoding so that these symbols appear correctly. If you run into problems, try adding this line to your configuration:
``` %!encoding: iso-8859-1
The {TM} symbol is a little trickier because it's part of the new UTF-8 encoding. First you need to save your source file as an UTF-8 text file. Check your text editor's preferences. Then just tell txt2tags about the new encoding:
``` %!encoding: utf-8
**Bonus Tip:** If you plan to type symbols or accented characters in your texts, a good practice is always use the UTF-8 encoding in your files. You don't need to understand exactly what it is, just keep in mind that is has all the symbols you may need someday :)
Another solution is to use the target's specific characters entities that represent those symbols. Then you can insert those symbols as "(C)", "(R)" and "(TM)" on the source file and let the filters do the dirty job. But remember that each target must have its own set of filters. An example for HTML:
```
% Filters to use (C), (R) and (TM) as copyright symbols
%!postproc(html): \(C\) ©
%!postproc(html): \(R\) ®
%!postproc(html): \(TM\) ™
```
++ Config overview (or Solving configuration problems) ++[dump-config]
In txt2tags you can
[define configuration in three tiers userguide/ConfigurationLoadingOrderandPrecedence.html]:
- The user configuration file (RC)
- The source document Config Area
- The command line options
-
Things can get real wild if you make lots of configs in all those
places. Even wilder if you're using the
[%!includeconf command userguide/includeconfcommand.html]
to get more configuration to your document.
In doubt or trouble, use the ``--dump-config`` option to see all the
configuration that is being read. First it lists all the config found
on the RC file:
```
$ txt2tags --dump-conf userguide.t2t
RAW config for RC file
(all) target........: html
```
Then there is the config found on the document's Config Area. Note
that the first column shows the target where the config will be
applied. If it is "(all)", this config is valid for all targets.
```
RAW config for source document
(all) target........: html
(all) options.......: --toc --toc-level 2 --css-sugar
(all) options.......: --css-sugar --no-toc --style userguide.css
(all) postproc......: ('<H3>Aurelio, .*', '')
(all) preproc.......: ('IMGPATH', '.')
...
(html) preproc.......: ('^%nopdf', '')
(html) preproc.......: ('^ *--------*', '')
(html) preproc.......: ('^ *========*', '')
```
Next are the command line options:
```
RAW config for command line
(all) dump-config...: ON
(all) infile........: userguide.t2t
(all) realcmdline...: ['--dump-conf', 'userguide.t2t']
```
And after all this listing, here is the result: the parsed config.
It's the real configuration that will be applied to the document
after all the configs were read and processed.
```
Full PARSED config
css-sugar.....: ON
dump-config...: ON
infile........: userguide.t2t
realcmdline...: --dump-conf, userguide.t2t
sourcefile....: userguide.t2t
style.........: userguide.css
target........: html
toc-level.....: 2
Active filters
preproc.......: IMGPATH -> .
preproc.......: MARKPROP -> **Properties:**
preproc.......: MARKCONT -> **Contains:**
...
preproc.......: ^%nopdf ->
preproc.......: ^ *--------* ->
preproc.......: ^ *========* ->
postproc......: <H3>Aurelio, .* ->
```
= Target Specific =[target-specific]
++ Table COLUMN align targets: SGML, LaTeX and Man Page ++[col-align]
Some targets let you align each table cell independently, as HTML.
Other are more strict, just letting you align the table column, then
all its cells share the same positioning. This is the case for SGML,
LaTeX and Man.
On this targets, the column alignment is defined by the align of the
**first** table row cells (usually it's a title row). So keep that in
mind when writing your text.
```
| Name | Age |
| John Smith | 55 |
| Mary Katana | 23 |
```
In this example, both columns will be centered on the aforementioned
targets, regardless the left and right align defined on the second and
third rows.
++ (X)HTML: What exactly the --css-sugar option does ++[css-sugar]
It "insert CSS-friendly tags for HTML and XHTML targets" ;)
Ok, ok, more details:
- The CELLPADDING attribute is removed from TABLE tag
- The HR tags around Table of Contents (TOC) are removed
- The Table of Contents is placed inside the new "toc" DIV
- The page contents (except TOC) is placed inside the new "body" DIV
- The PRE tag contents is not indented by two spaces
- The headers (first three lines) are changed:
- They are placed inside the new "header" DIV
- They use H1, H2 and H3 tags with no formatting
So this option clears the formatting attributes and create new DIVs to
make it easier to use CSS rules. Then you can see the page as a three
piece component: header, toc, body and apply different rules for each.
**Note:** Using ``--style`` doesn't imply ``--css-sugar``. You have to
declare both.
++ (X)HTML: Insert a manual line break <BR> ++[html-line-break]
Txt2tags doesn't have a mark for the manual line break. In the cases
you want to use it, maybe a bullet list, a table or a verbatim text
would fit better.
But if the line break is the solution you want, just make your own new
mark for it. Let's say "@@" will be the line break mark.
```
%!postproc( html): @@ <BR>
%!postproc(xhtml): @@ <br />
```
% Thanks Nicolas Quiniou for the xhtml correct BR tag
% man .br -- is it?
Then in your text, use @@ when you want a line break. Example:
``` First line @@ Second Line @@ Third line
++ (X)HTML: Use semantic tags (STRONG, EM, INS, DEL) instead visual tags (B, I, U, S) ++[html-semantic-tags]
By default txt2tags uses the good old visual tags (``<B>``, ``<I>``, ``<U>``, ``<S>``) for bold, italic, underline and strike text.
Some people prefer to use their semantic equivalents (``<strong>``, ``<em>``, ``<ins>``, ``<del>``) instead. If this is your case, just set up these filters:
```
% Use semantic tags (strong, em, ins, del) instead visual (B, I, U, S)
%!postproc(html): '(?i)(</?)b>' '\1strong>'
%!postproc(html): '(?i)(</?)i>' '\1em>'
%!postproc(html): '(?i)(</?)u>' '\1ins>'
%!postproc(html): '(?i)(</?)s>' '\1del>'
```
RCFILE filter
++ (X)HTML: Make subscript/superscript text ++[html-super-sub]
Txt2tags doesn't have a mark for subscript or superscript text.
But you can make your own. Let's define the following two new marks
for them:
- **``^^text^^``** for superscript text
- **``,,text,,``** for subscript text
-
Using the same idea from the previous tip, we make two filters:
```
% The ^ need to be escaped by \
%!postproc(html): \^\^(.*?)\^\^ <sup>\1</sup>
%!postproc(html): ,,(.*?),, <sub>\1</sub>
```
Using this filters, ``^^upper^^ and ,,lower,,`` becomes
``<sup>upper</sup> and <sub>lower</sub>``.
Again, you can instead use the modern CSS powered version:
```
%!postproc(html): \^\^(.*?)\^\^ <span class="textsup">\1</span>
%!postproc(html): ,,(.*?),, <span class="textsub">\1</span>
% On the CSS:
% .textsup { vertical-align: super }
% .textsub { vertical-align: sub }
```
RCFILE filters
++ (X)HTML: Use a remote image ++[html-remote-image]
In txt2tags you have a mark for local images, but not for remote ones.
The trick here is to fool the program making it think your remote
image is local.
There are two ways of achieving this. The first uses a filter:
```
%!postproc(html): RemoteImage.jpg http://www.example.com/myimage.jpg
Hi, check out my picture: [RemoteImage.jpg].
```
So txt2tags will make the image tag ``<IMG SRC="RemoteImage.jpg">``
and the filter will change it to ``<IMG SRC="http://www.example...">``.
The other trick is cleaner to type, but relies on a txt2tags behavior
that may not work on future versions. Just protect the image address
with the [raw mark userguide/RawRawLineRawArea.html], from the
beginning to the last character before the dot:
``` Hi, check out my picture: [""http://www.example.com/myimage"".jpg].
Easy!
++ (X)HTML: Insert text for images ALT attribute ++[html-img-alt]
Txt2tags already puts an empty ALT="" attribute on all images, so all
you have to do is to fill it. PostProc comes for the rescue.
```
%!postproc(xhtml): '(?i)(city.jpg.*?alt=")' '\1this is my city'
%!postproc(xhtml): '(?i)(beach.jpg.*?alt=")' '\1a really nice beach'
Hello, this is a photo of my city: [city.jpg]
And this the beach near here: [beach.jpg]
```
This will be converted to:
```
<p>
Hello, this is a photo of my city:
<img align="right" src="city.jpg" border="0" alt="this is my city"/>
And this the beach near here:
<img align="right" src="beach.jpg" border="0" alt="a really nice beach"/>
</p>
```
The PostProc rule is a
[regular expression http://en.wikipedia.org/wiki/Regular_expression]
that matches from the image filename until its ALT attribute contents
start. Don't worry if you don't understand these symbols. Just copy &
paste these lines to you text and change "**city.jpg**" by your image
filename and "**this is my city**" to the image's text. The rest remains
untouched.
++ (X)HTML: Insert custom tags (DIV, SPAN) ++[html-custom-tags]
From txt2tags version 2.6 and newer, there's a new tagged mark to
directly insert target code.
You can do it in blocks:
```
'''
<div id="mycooldiv">
This paragraph will live inside mycooldiv DIV.
But note that txt2tags marks are not interpreted here.
</div>
'''
```
In specific lines:
```
''' <div id="mycooldiv">
This paragraph will live inside mycooldiv DIV.
Txt2tags marks are interpreted here.
''' </div>
```
Or even inline, inside a paragraph:
``` My name is ''<span class="name">''John''</span>''.
If you're using and older version of txt2tags, follow these tips:
You can combine the [Raw Line mark userguide/RawRawLineRawArea.html]
and a PostProc filter to insert any arbitrary (X)HTML tag you need.
First, decide which symbols you'll use to represent the ``<`` and
``>`` characters. A popular choice is ``{{`` and
% breaking line to avoid postproc expansion
``}}``. Then write your tags inside Raw Lines and it will work.
Example:
```
%!postproc(html): {{(.*?)}} <\1>
""" {{div id="mycooldiv"}}
This paragraph will live inside mycooldiv DIV.
""" {{/div}}
```
This will generate the following HTML code:
```
<div id="mycooldiv">
<P>
This paragraph will live inside mycooldiv DIV.
</P>
</div>
```
**Note:** The blank line after the paragraph is to make sure it will be closed before the DIV. If omitted, you'll end with tag overlap: ``<div><p></div></p>``.
++ (X)HTML: Use entities like é for accented characters ++[html-entities]
All modern browsers know how to handle accented characters, you don't need to use HTML entities like ``é`` or ``ã`` to represent them. Just type the accented letters normally.
The only thing you need to do, is to specify the correct encoding of your source file. You can use the txt2tags ``--encoding`` option or ``%!encoding`` directive. Examples:
```
% My source file is encoded in UTF-8
%!encoding: UTF-8
% My source file is encoded in latin-1 (ISO-8859-1)
%!encoding: iso-8859-1
```
If you really need the entities, for some exotic reason or system limitation, you can convert the accented chars using filters. If you use just a few accented chars, create one filter for each letter (lower and uppercase):
```
% Convert accented chars to HTML entities: é -> é
%!postproc(html): á á
%!postproc(html): â â
%!postproc(html): à à
%!postproc(html): ã ã
%!postproc(html): ä ä
%!postproc(html): Á Á
% ...
```
If you want a general solution for all accented vowels plus C-cedilla and N-tilde, use this set of filters:
```
% Convert accented vowels (plus Ç and Ñ) to HTML entities
%!postproc(html): ([ÁÉÍÓÚáéíóú]) &\1acute;
%!postproc(html): ([ÀÈÌÒÙàèìòù]) &\1grave;
%!postproc(html): ([ÄËÏÖÜäëïöü]) &\1uml;
%!postproc(html): ([ÂÊÎÔÛâêîôû]) &\1circ;
%!postproc(html): ([ÃÕãõ]) &\1tilde;
%!postproc(html): &[ÁÀÃÄÂ](\w+;) &A\1
%!postproc(html): &[áàãäâ](\w+;) &a\1
%!postproc(html): &[ÉÈËÊ](\w+;) &E\1
%!postproc(html): &[éèëê](\w+;) &e\1
%!postproc(html): &[ÍÌÏÎ](\w+;) &I\1
%!postproc(html): &[íìïî](\w+;) &i\1
%!postproc(html): &[ÓÒÖÔÕ](\w+;) &O\1
%!postproc(html): &[óòöôõ](\w+;) &o\1
%!postproc(html): &[ÚÙÜÛ](\w+;) &U\1
%!postproc(html): &[úùüû](\w+;) &u\1
%!postproc(html): Ñ Ñ
%!postproc(html): ñ ñ
%!postproc(html): Ç Ç
%!postproc(html): ç ç
```
RCFILE filters
++ (X)HTML: Split the page in multiple files ++[html-custom-tags]
All you have to do is to normally convert your file to (X)HTML with
txt2tags, then use the excellent HTMLDOC tool to split it. Example:
``` htmldoc -t htmlsep -o output-folder file.html
You can get full instructions on how to install and use HTMLDOC with
txt2tags on
[this Blog post http://txt2tags.wordpress.com/2006/08/31/split-html-in-multiple-pages/].
++ (X)HTML: Convert HTML pages to the txt2tags markup ++[html-to-t2t]
If you're migrating your site to txt2tags, there's a handy Vim script to convert all your HTML files to the simple t2t markup.
- First download the [unhtml.vim tools/unhtml.vim] script, or get it from the txt2tags "extras" folder.
- Then open one HTML file on the [Vim editor http://www.vim.org] and execute the following command:
``` :source /path/to/unhtml.vim
- A new txt2tags file named ``<yourfile>.html.t2t`` will be saved. Check its contents and correct by hand any mistake.
-
Repeat this process to all your HTML files.
**Tip inside the tip:** You can comment line 85 if you want the script to preserve unknown tags. They are deleted by default. Just add a double quote at the line start:
```
" mmmmm, dangerous! it removes all remaining HTML tags
" %s,<[^>]*>,,ge
```
**Note:** The Vim editor is installed by default on Linux and Mac OS X. Windows users must download and install it to use this script.
++ Man: Change section number ++[man-section]
% Patrick Useldinger
By default txt2tags generates man pages for section 1 (user commands).
But your man page can use any of these sections:
|| Nr. | Topic |
| 1 | Commands available to users
| 2 | Unix and C system calls
| 3 | C library routines for C programs
| 4 | Special file names
| 5 | File formats and conventions for files used by Unix
| 6 | Games
| 7 | Word processing packages
| 8 | System administration commands and procedures
To change the man section number, use this PostProc filter:
``` %!postproc(man): "^(\.TH.*) 1 " "\1 5 "
Change the number "5" to the desired section number. Attention to the white spaces. Cut & paste this line to make sure it is correct.
RCFILE filter
++ Man: Make the OPTIONS part of the man page ++[man-options]
Man pages use a standard format to show a program's options. You can
make your man page looks exactly as the system's pages using
definition lists. Pay attention to the bold marks and leading spacing
on each definition term. Example:
```
= OPTIONS =
: **--dump-config**
print all the config found and exit
: **-h**, **--help**
print help information and exit
: **-V**, **--version**
print program version and exit
```
++ MagicPoint: Make a pause on the slide ++[mgp-pause]
You can use the strong bar (``=========``) to make a pause on the
current slide in MagicPoint. It's useful to show just the first part
of the slide, then you explain it, then you press the space bar and the
rest of the slide appears.
You can use as many pauses as needed, like one for each list item.
Example:
```
= My nice slide =
- Item one
====================
- Item two
====================
- Item three
====================
- Item four
-
```
%++ MagicPoint: Force a new slide without title ++[mgp-pause]
%A new page is created for every =title=, or ==subtitle==. So just
%divide your contents into sections, one for each slide.
%
%If you don't need the pause, you can map the strong bar to a page
%break:
% %!postproc(mgp): %pause %page\n\n\n
% 1st 3 lines are special for titles
++ LaTeX: Load extra packages (\usepackage) ++[tex-style]
You can load any LaTeX package into your document, just use the
Style directive. Example:
```
%!style(tex): amssymb
% The --style command line option is another alternative
```
This will create the ``\usepackage{amssymb}`` line on your document
Preamble. Multiple packages can be loaded in one single call:
```
%!style(tex): amssymb,booktabs,array,paralist
% Will turn into \usepackage{amssymb,booktabs,array,paralist}
```
Starting in txt2tags version 2.3.1, you can also define multiple style
calls, making it easy insert configuration for each package using
PostProc filters. Example:
```
%!style(tex): amssymb
%!style(tex): booktabs
%!style(tex): array
%!style(tex): paralist
% This will create four \usepackage lines
```
RCFILE configuration
++ LaTeX: Remove the current date ++[tex-date]
% by [email protected]
In txt2tags, the third header line is often used for the document date. If you leave it blank, no date tag will be generated. But in LaTeX, when no date tag is found, it automatically shows the current date on the document cover. Some expect this behavior, some don't.
To force the document to have no date, you must leave an empty date tag on the LaTeX code: ``\date{}``. You can make it easily setting a PostProc filter:
```
%!postproc(tex): \\date{-} \date{}
```
And in you source files, just type an hyphen on the third line, for example:
% Txt2tags respect the LaTeX default behavior, just removing the \date{} tag and not explicity
```
My doc
John Doe
-
```
The filter will remove the hyphen, leaving the tag empty and then LaTeX won't print any date.
**Extra tip:** If your TeX processor complains about the missing Author tag, you can do a similar workaround setting up another filter:
```
%!postproc(tex): \\author{-} \author{}
```
RCFILE configuration
++ LaTeX: Set the language config (babel, inputenc) ++[tex-lang]
% by leorosa
For the text encoding (character set) just use the Encoding directive.
Then include the babel package in your document and create a PostProc
filter to insert the language for it. It's a three line wonder:
```
% Brazilian Portuguese configuration
%!encoding: iso-8859-1
%!style(tex): babel
%!postproc(tex): {babel} [brazil]{babel}
```
This will add two extra lines to the LaTeX Preamble:
```
\usepackage[latin1]{inputenc} % char encoding
\usepackage[brazil]{babel} % user defined package
```
Note that the IANA standard encoding names are automatically
translated to [the LaTeX equivalents userguide/Encoding.html]
(iso-8859-1 to latin1 on this example).
++ LaTeX: Use a personal style file (.sty) ++[tex-user-style]
% Bob Tennent
Create your own LaTeX user style file (say myrules.sty) with all the
packages and configuration you usually put inside the document
Preamble.
Then just use the Style directive pointing to your file. Remember to
include the relative path for the file, if it isn't on the same folder
as your txt2tags source file. The file must have the ``.sty``
extension. You can use as many files as your heart wishes. Example:
```
%!style(tex): ../../common.sty
%!style(tex): ../../pdfthings.sty
%!style(tex): projectrules.sty
```
**Note:** The support for multiple style files was added into txt2tags
version 2.3.1.
RCFILE configuration
++ LaTeX: Use symbols and Greek letters (µ « ® Ø) ++[tex-greek]