Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Markup2
blob: 10163e9cf950a856cdf1ea6f808ce9818f53b1bf (plain)
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
= Markup2

Hatta markup implements a large subset of the
[[http://www.wikicreole.org/|Wiki Creole 1.0 standard]]. [[#1|[1] ]]
The Hatta variation is described on //this// page
and [[MarkupSummary|summarized elsewhere]].

Hint: The {{{Edit}}} button can be used to discover
how markup was used to create any editable page.

Sections:
[[#heading|Heading]],
[[#emphasis|Emphasis]],
[[#punctuation|Punctuation]],
[[#paragraph|Paragraph]],
[[#list|Lists]],
[[#preformat|Preformat]],
[[#syntax|Syntax]],
[[#link|Links]],
[[#image|Images]],
[[#table|Tables]],
[[#math|Math]],
[[#comment|Comment]],

----
{{#heading}}
== Heading

Headings have one or more '=', beginning in column 1.

Hatta forces the level 1 heading to the page name.
It can't be explicitly controlled (yet?).

{{{#!text
= Huge Heading (html h1)
== Large Heading (html h2, nominal)
=== Medium Heading (html h3, sub-sub-level)
==== Small Heading (html h4, sub-sub-sub-level)
===== Tiny Heading (html h5, minimum level supported)
}}}

= Huge Heading (html h1)
== Large Heading (html h2, nominal)
=== Medium Heading (html h3, sub-sub-level)
==== Small Heading (html h4, sub-sub-sub-level)
===== Tiny Heading (html h5, minimum level supported)

----
{{#emphasis}} {{#test}}
== Emphasis:

Horizontal rules have four or more '-', beginning in column 1.

Underline and strike through emphasis is not supported (yet?).

{{{#!text
Plain text.

##Monospace markup##

//Italic markup//

**Bold markup**

**//Bold italic markup//**

//**Italic bold markup**//

----
Horizontal rule.
}}}

Plain text.

##Monospace markup##

//Italic markup//

**Bold markup**

**//Bold italic markup//**

//**Italic bold markup**//

----
Horizontal rule.

----
{{#punctuation}}
== Punctuation

|=Markup          |=Results   |=Comment |
|{{{Go...home}}}  |Go...home  |… |
|{{{Go--home}}}   |Go--home   |–  |
|{{{Go---home}}}  |Go---home  |—  |
|{{{Go----home}}} |Go----home |
|{{{Go~home}}}    |Go~home    |    |
|{{{Go\~home}}}   |Go\~home   |"~"      |
|{{{Go~~home}}}   |Go~~home   |∼    |
|{{{Go(C)home}}}  |Go(C)home  |©   |
|{{{Go-->home}}}  |Go-->home  |→   |
|{{{Go<--home}}}  |Go<--home  |&larr;   |
|{{{Go(R)home}}}  |Go(R)home  |&reg;    |
|{{{Go(TM)home}}} |Go(TM)home |&trade;  |
|{{{Go%%home}}}   |Go%%home   |&permil; |
|{{{Go``home}}}   |Go``home   |&ldquo;  |
|{{{Go''home}}}   |Go''home   |&rdquo;  |
|{{{Go,,home}}}   |Go,,home   |&bdquo;  |

----
{{#paragraph}}
== Paragraph:

{{{#!text
Adjoining lines are concatenated and
long lines are wrapped when rendered.
Adjoining sentences become paragraphs.
}}}

Adjoining lines are concatenated and
long lines are wrapped when rendered.
Adjoining sentences become paragraphs.

{{{#!text
Force line breaks with\\two back slashes.
}}}

Force line breaks with\\two back slashes.

----
{{#list}}
== Lists

List item lines begin with one or more '*',
followed by white space and text for the item.
Sub-lists are controlled by the number of '*', not indentation.
Indents are optional before the initial '*', but not recommended.
If used, two blanks per sub-level are recommended for consistency.

Multi-line list items aren't supported (yet?).

{{{#!text
Bullet list:
* First item
* Second item
** Sub-item
*** Sub-sub-item
* Third item
  ** Sub-item (leading white space is ignored)
    *** Sub-sub-item (space improves readability)
}}}

Bullet list:
* First item
* Second item
** Sub-item
*** Sub-sub-item
* Third item
  ** Sub-item (leading white space is ignored)
    *** Sub-sub-item (space improves readability)

Numbered (ordered) lists have //limited// support, but only if
[[http://hatta-wiki.org/+history/Ordered%20lists/4:5|Ben's patch]]
is applied (as revealed by this example).
Even with the patch, mixing unordered and ordered will **scramble** list
rendering and worse, indentation of all subsequent text is **shifted**.

{{{#!text
Ordered list:
# First item
# Second item
## Sub-item
### Sub-sub-item
# Third item
  ## Sub-item
    ### Sub-sub-item
}}}

Ordered list:
# First item
# Second item
## Sub-item
### Sub-sub-item
# Third item
  ## Sub-item
    ### Sub-sub-item

//BROKEN// (mixing ordered and unordered list items):
{{{#!text
Mixed list 1:
* First item
* Second item
## Sub-item
*** Sub-sub-item
* Third item
  ** Sub-item
    *** Sub-sub-item

Mixed list 2:
# First item
# Second item
** Sub-item
### Sub-sub-item
# Third item
  ## Sub-item
    ### Sub-sub-item
}}}

----
{{#preformat}}
== Preformatted

{{{#!text
    Lines that begin with white space
        are 'preformatted' (not joined),
    unless they are '* items' in lists.
}}}

    Lines that begin with white space
        are 'preformatted' (not joined),
    unless they are '* items' in lists.

{{{#!text
> Joe: Block quote lines begin with one or more '>'.
>> Bob: When are they typically used?
>>> Joe: Conversation highlights mostly.
}}}

> Joe: Block quote lines begin with one or more '>'.
>> Bob: When are they typically used?
>>> Joe: Conversation highlights mostly.

{{{#!text
Inline **text** within {{{triple braces}}} use //monospace// font.
All markup {{{**is** //ignored//}}} within the braces.
}}}

Inline **text** within {{{triple braces}}} use //monospace// font.
All markup {{{**is** //ignored//}}} within the braces.

{{{#!text
{{{
Blocks of text delimited by lines that begin and end
with triple braces are preformatted and monospace.

All markup **is** //ignored// within the block.
Note: this "} }}" is a kludge for "}}}".
} }}
}}}

{{{
Blocks of text delimited by lines that begin and end
with triple braces are preformatted and monospace.

All markup **is** //ignored// within the block.
Note: this "} }}" is a kludge for "}}}".
}}}

{{{#!text
{{{#!text
Syntax highlighting can be requested with
the opening triple braces, i.e. "#!text".
Many languages and file formats are supported by
http://pygments.org/docs/lexers/#special-lexers
} }}
}}}
\\
{{{#!text
Syntax highlighting can be requested with
the opening triple braces, i.e. "#!text".
Many languages and file formats are supported by
http://pygments.org/docs/lexers/#special-lexers
}}}
\\
{{{#!text
{{{#!c
/* "Hello World" written in C */
#include <stdio.h>
int main(int argc, char[]* argv)
{ printf("Hello World\n"); return 0; }
} }}
}}}
\\
{{{#!c
/* "Hello World" written in C */
#include <stdio.h>
int main(int argc, char[]* argv)
{ printf("Hello World\n"); return 0; }
}}}

----
{{#link}}
== Links

Page names may be prefixed by a path, but only if
[[http://hatta-wiki.org/|Randy's docs tree patch]] is applied.
Paths must be relative to the directory configured for '{{{docs}}}'.
They may //not// contain '{{{..}}}' components for security reasons.

Note: Putting symbolic links in Hatta's page directory may lead to unpredictable errors. Don't do that.

{{{#!text
Link syntax:
* [[Markup2]]
* [[Markup2|Markup details]]
* [[Markup2#emphasis]]
* [[Markup2#emphasis|Markup emphasis]]
* [[path/filename.hat]] 
* [[chapter_1/section_2#par3]] 
* [[#test]]
* [[#test|On page link]]
* [[#5|[5] ]] Footnote reference
* http://sheep.art.pl
* [[http://sheep.art.pl]]
* [[http://sheep.art.pl|Sheep]]
* [[Home|{{development.png}}]]
* MarkupSummary (CamelCase enabled)

{{#5}} [5] Footnote anchor.
}}}

Link syntax:
* [[Markup2]]
* [[Markup2|Markup details]]
* [[Markup2#emphasis]]
* [[Markup2#emphasis|Markup emphasis]]
* [[path/filename.hat]] 
* [[chapter_1/section_2#par3]] 
* [[#test]]
* [[#test|On page link]]
* [[#5|[5] ]] Footnote reference
* http://sheep.art.pl
* [[http://sheep.art.pl]]
* [[http://sheep.art.pl|Sheep]]
* [[Home|{{development.png}}]]
* MarkupSummary (CamelCase enabled)

{{#5}} [5] Footnote anchor.

----
{{#image}}
== Images

{{{#!text
Three logo variations
{{development.png}}
{{development.png|Logo}}
[[http://hatta-wiki.org|{{development.png}}]]
rendered inline
----
Inline {{development.png}} logo.
----
**{{development.png}}** Left float logo using {{{**{{development.png}}**}}} (bold emphasis).
----
//{{development.png}}// Right float logo using {{{//{{development.png}}//}}} (italic emphasis).
}}}

Three logo variations
{{development.png}}
{{development.png|Logo}}
[[http://hatta-wiki.org|{{development.png}}]]
rendered inline.
----
**{{development.png}}** Left float logo using {{{**{{development.png}}**}}} (bold emphasis).
----
//{{development.png}}// Right float logo using {{{//{{development.png}}//}}} (italic emphasis).
----
Smiley images :) ;) :( :P :D can be inserted with
{{{:)}}}, {{{;)}}}, {{{:(}}}, {{{:P}}} and {{{:D}}}.

----
{{#table}}
== Tables

//Don't// use tables for layout!

Pending features (wish list?):
* Table alignment within page
* Cell alignment within table
* Row and column spans
* Lists within cells

{{{#!text
|Headers |=Column A|=Column B|=Column C|
|=Row 1  |Cell A1  |Cell B1  |Cell C1  |
|=Row 2  |Cell A2  |Cell B2  |
|=Row 3  |Cell A3  |Cell B3  |Cell C3  |
}}}

|Headers |=Column A|=Column B|=Column C|
|=Row 1  |Cell A1  |Cell B1  |Cell C1  |
|=Row 2  |Cell A2  |Cell B2  |
|=Row 3  |Cell A3  |Cell B3  |Cell C3  |

{{{#!text
|=Line Hdr\\Break Hdr|=Column //A//|Italic //B//|=Column C|
|Row 1 |Bold **A1**|Italic //B1//|Cell C1|
|=Row 2|Line A2\\Break A2|  |Link [[#list|C2]]|
|=Row 3|{{{A3= Bar}}}    |Bold **B3**|
}}}

|=Line Hdr\\Break Hdr|=Column //A//|Italic //B//|=Column C|
|Row 1 |Bold **A1**|Italic //B1//|Cell C1|
|=Row 2|Line A2\\Break A2|  |Link [[#list|C2]]|
|=Row 3|{{{A3= Bar}}}    |Bold **B3**|

----
{{#math}}
== Math

See [[http://hatta-wiki.org/Math]]

----
{{#comment}}
== Comment

Comments are not supported (yet?).
* Markup-only comments... No
* HTML comments... No

----

{{#1}} [1]
Hatta support is weak or missing for a few features.
The [[http://hatta-wiki.org/Usage|Usage]] and
[[http://hatta-wiki.org/+history|Recent Changes]] pages at
http://hatta-wiki.org/ should be reviewed periodically,
because more functionality is planned.