-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.tracwiki
109 lines (93 loc) · 1.71 KB
/
random.tracwiki
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
= Header 1 =
== Header 2 ==
=== Header 3 ===
'''bold'''
=== Heading 3 ^[=#fnr.1][#fn.1 1]^
''italic''
[[WikiProcessors#CodeHighlightingSupport]]\\
[[TracSyntaxColoring]]\\
[[TracSyntaxColoring#language-supported]]
{{{
#!c++
class Foo : public Bar
{
public:
Foo(int val);
void doSometing();
private:
const int _val;
}
}}}
{{{
#!python
class Test:
def __init__(self):
print "Hello World"
if __name__ == '__main__':
Test()
}}}
{{{
#!cl
(require 'org nil t)
}}}
{{{
#!diff
--- Version 55
+++ Version 56
@@ -115,8 +115,9 @@
name='TracHelloWorld', version='1.0',
packages=find_packages(exclude=['*.tests*']),
- entry_points = """
- [trac.plugins]
- helloworld = myplugs.helloworld
- """,
+ entry_points = {
+ 'trac.plugins': [
+ 'helloworld = myplugs.helloworld',
+ ],
+ },
)
}}}
{{{
#!sql
SELECT count(*)
, department
FROM employee
GROUP by department;
}}}
----
[http://www.google.com Google Home Page]
[wiki:WikiFormatting Trac Wiki Formatting Information]
[[Latex(\sum{\frac{\alpha^{\beta^2}}{\delta + \alpha}})]]
{{{
#!Latex
\frac{\alpha^{\beta^2}}{\delta + \alpha}
}}}
= Heading 1
== Heading 2 #Explicit_ID
=== Heading 3^([#Explicit_ID note])^
==== Font Styles
* '''bold'''
* ''italic''
* ''''Wikipedia style'''
* `monospaced (*other markup ignored*)`
* Bullet list
on multiple lines
1. nested list
a. different numbering
styles
= Source code
This is a \\
line break
{{{
#!cpp
class Foo : public Bar
{
public:
Foo(int val);
void doSometing();
private:
const int _val;
}
}}}
![[MacroList(*)]]