Ticket #3493: TestPage.txt

File TestPage.txt, 1.7 kB (added by grigi, 5 months ago)

Sample input

Line 
1 = Test Page =
2 [[PageOutline(2-4,,pulldown)]]
3
4 == About ==
5 This page is to test the [http://trac-hacks.org/wiki/TracWikiToPdfPlugin WikiToPdfPlugin] export abilites.
6   Indented line.
7
8 == Font Styles ==
9  * '''bold''', '''!''' can be bold too''', and '''! '''
10  * ''italic''
11  * '''''bold italic'''''
12  * __underline__
13  * {{{monospace}}} or `monospace`
14  * ~~strike-through~~
15  * ^superscript^
16  * ,,subscript,,
17
18 == Lists ==
19  * Item 1
20    * Item 1.1
21       * Item 1.1.1   
22       * Item 1.1.2
23       * Item 1.1.3
24    * Item 1.2
25  * Item 2
26
27  1. Item 1
28    a. Item 1.a
29    a. Item 1.b
30       i. Item 1.b.i
31       i. Item 1.b.ii
32  1. Item 2
33 And numbered lists can also be given an explicit number:
34  3. Item 3
35
36 == Discussion Citations ==
37 >> Someone's original text
38 > Someone else's reply text
39 My reply text
40
41
42 == Table ==
43 ||Order||A||B|| ||
44 ||1||true||true||Perfect match||
45 ||2||false||true||Then matched on B||
46 ||3||true||false||Match on A||
47 ||4||false||false||Load default||
48
49 == Text Blocks ==
50
51 === Plain ===
52 {{{
53 BALOOGHA!
54 }}}
55
56 === Highlight ===
57 {{{
58 #!python
59 class Test:
60
61     def __init__(self):
62         print "Hello World"
63 if __name__ == '__main__':
64    Test()
65 }}}
66
67 === BAD ===
68 {{{
69 #!somethingbad
70 asdfa
71 }}}
72
73 === HTML ===
74 {{{
75 #!html
76 <h1 style="text-align: right; color: blue">HTML Test</h1>
77 }}}
78
79 {{{
80 #!div class=important style="border: 2pt solid; text-align: center"
81 This is the ''only'' way to go in Trac 0.11
82 }}}
83
84 == HLine ==
85 ----
86
87 == Images ==
88
89 === Smileys ===
90 [[ShowSmileys(5)]]
91
92 === Embedded image ===
93 [[Image(TestPage:bvmpic1.png)]]
94
95 === !GraphViz ===
96 {{{
97 #!graphviz
98 digraph G {
99  rankdir="LR"
100  Hello->World->Graphviz->Rules
101 }
102 }}}