~ubuntu-branches/ubuntu/karmic/pandoc/karmic

« back to all changes in this revision

Viewing changes to tests/writer.context

  • Committer: Bazaar Package Importer
  • Author(s): Recai Oktaş, John MacFarlane, Recai Oktaş
  • Date: 2007-09-03 18:24:02 UTC
  • Revision ID: james.westby@ubuntu.com-20070903182402-nkapz649g7nrecxj
Tags: 0.44
[ John MacFarlane ]

* Fixed bug in HTML writer:  when --toc was used, anchors were put around
  headers, which is invalid XHTML (block content within inline element).
  Now the anchors are put inside the header tags.  Resolves Issue #23.

* Added xmlns attribute to html element in html writer tests.
  This attribute is added by more recent versions of the
  xhtml library (>= 3000), and is required for valid XHTML.

[ Recai Oktaş ]

* On configure, compile 'Setup.hs' to 'setup' and use 'setup' as the build
  command instead of 'runhaskell', which, on some platforms (such as s390,
  alpha, m68k), throws the following error:

      runhaskell Setup.hs configure --prefix=/usr
      ghc-6.6.1: not built for interactive use

  This causes a serious FTBFS bug.  Closes: #440668.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\enableregime[utf]  % use UTF-8
 
2
 
 
3
\setupcolors[state=start]
 
4
\setupinteraction[state=start, color=middlered] % needed for hyperlinks
 
5
 
 
6
\setuppapersize[letter][letter]  % use letter paper
 
7
\setuplayout[width=middle, backspace=1.5in, cutspace=1.5in,
 
8
             height=middle, header=0.75in, footer=0.75in] % page layout
 
9
\setuppagenumbering[location={footer,center}]  % number pages
 
10
\setupbodyfont[11pt]  % 11pt font
 
11
\setupwhitespace[medium]  % inter-paragraph spacing
 
12
 
 
13
\setuphead[section][style=\tfc]
 
14
\setuphead[subsection][style=\tfb]
 
15
\setuphead[subsubsection][style=\bf]
 
16
 
 
17
% define title block commands
 
18
\unprotect
 
19
\def\doctitle#1{\gdef\@title{#1}}
 
20
\def\author#1{\gdef\@author{#1}}
 
21
\def\date#1{\gdef\@date{#1}}
 
22
\date{\currentdate}  % Default to today unless specified otherwise.
 
23
\def\maketitle{%
 
24
  \startalignment[center]
 
25
    \blank[2*big]
 
26
      {\tfd \@title}
 
27
    \blank[3*medium]
 
28
      {\tfa \@author}
 
29
    \blank[2*medium]
 
30
      {\tfa \@date}
 
31
    \blank[3*medium]
 
32
  \stopalignment}
 
33
\protect
 
34
 
 
35
% define descr (for definition lists)
 
36
\definedescription[descr][
 
37
  headstyle=bold,style=normal,align=left,location=hanging,
 
38
  width=broad,margin=1cm]
 
39
 
 
40
% define ltxitem (for bulleted lists)  
 
41
\defineitemgroup[ltxitem][levels=4]
 
42
\setupitemgroup[ltxitem][1][1]
 
43
\setupitemgroup[ltxitem][2][2]
 
44
\setupitemgroup[ltxitem][3][3]
 
45
\setupitemgroup[ltxitem][4][4,packed]
 
46
 
 
47
% define ltxenum (for enumerated lists)
 
48
\defineitemgroup[ltxenum][levels=4]
 
49
\setupitemgroup[ltxenum][1][n]
 
50
\setupitemgroup[ltxenum][2][a]
 
51
\setupitemgroup[ltxenum][3][r]
 
52
\setupitemgroup[ltxenum][4][A,packed]
 
53
 
 
54
\setupthinrules[width=15em]  % width of horizontal rules
 
55
 
 
56
% for block quotations
 
57
\definestartstop [blockquote]
 
58
                 [before={\startnarrower\switchtobodyfont[11pt]
 
59
                          \whitespace\setupindenting[no]},
 
60
                  after={\stopnarrower\whitespace}]
 
61
 
 
62
\setupheads[sectionnumber=no, style=\bf]
 
63
\doctitle{Pandoc Test Suite}
 
64
 \author{John MacFarlane \& Anonymous}
 
65
 \date{July 17, 2006}
 
66
 
 
67
\starttext
 
68
\maketitle
 
69
 
 
70
This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite.
 
71
 
 
72
\thinrule
 
73
 
 
74
\section{Headers}
 
75
 
 
76
\subsection{Level 2 with an \useurl[1][/url][][embedded link]\from[1]}
 
77
 
 
78
\subsubsection{Level 3 with {\em emphasis}}
 
79
 
 
80
Level 4
 
81
 
 
82
Level 5
 
83
 
 
84
\section{Level 1}
 
85
 
 
86
\subsection{Level 2 with {\em emphasis}}
 
87
 
 
88
\subsubsection{Level 3}
 
89
 
 
90
with no blank line
 
91
 
 
92
\subsection{Level 2}
 
93
 
 
94
with no blank line
 
95
 
 
96
\thinrule
 
97
 
 
98
\section{Paragraphs}
 
99
 
 
100
Here's a regular paragraph.
 
101
 
 
102
In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.
 
103
 
 
104
Here's one with a bullet. * criminey.
 
105
 
 
106
There should be a hard line break\crlf
 
107
here.
 
108
 
 
109
\thinrule
 
110
 
 
111
\section{Block Quotes}
 
112
 
 
113
E-mail style:
 
114
 
 
115
\startblockquote
 
116
This is a block quote. It is pretty short.
 
117
 
 
118
\stopblockquote
 
119
 
 
120
\startblockquote
 
121
Code in a block quote:
 
122
 
 
123
\starttyping
 
124
sub status {
 
125
    print "working";
 
126
}
 
127
\stoptyping
 
128
A list:
 
129
 
 
130
\startitemize
 
131
\sym{1.} item one
 
132
\sym{2.} item two
 
133
\stopitemize
 
134
Nested block quotes:
 
135
 
 
136
\startblockquote
 
137
nested
 
138
 
 
139
\stopblockquote
 
140
 
 
141
\startblockquote
 
142
nested
 
143
 
 
144
\stopblockquote
 
145
 
 
146
\stopblockquote
 
147
 
 
148
This should not be a block quote: 2 \lettermore{} 1.
 
149
 
 
150
Box-style:
 
151
 
 
152
\startblockquote
 
153
Example:
 
154
 
 
155
\starttyping
 
156
sub status {
 
157
    print "working";
 
158
}
 
159
\stoptyping
 
160
\stopblockquote
 
161
 
 
162
\startblockquote
 
163
\startitemize
 
164
\sym{1.} do laundry
 
165
\sym{2.} take out the trash
 
166
\stopitemize
 
167
\stopblockquote
 
168
 
 
169
Here's a nested one:
 
170
 
 
171
\startblockquote
 
172
Joe said:
 
173
 
 
174
\startblockquote
 
175
Don't quote me.
 
176
 
 
177
\stopblockquote
 
178
 
 
179
\stopblockquote
 
180
 
 
181
And a following paragraph.
 
182
 
 
183
\thinrule
 
184
 
 
185
\section{Code Blocks}
 
186
 
 
187
Code:
 
188
 
 
189
\starttyping
 
190
---- (should be four hyphens)
 
191
 
 
192
sub status {
 
193
    print "working";
 
194
}
 
195
 
 
196
this code block is indented by one tab
 
197
\stoptyping
 
198
And:
 
199
 
 
200
\starttyping
 
201
    this code block is indented by two tabs
 
202
 
 
203
These should not be escaped:  \$ \\ \> \[ \{
 
204
\stoptyping
 
205
\thinrule
 
206
 
 
207
\section{Lists}
 
208
 
 
209
\subsection{Unordered}
 
210
 
 
211
Asterisks tight:
 
212
 
 
213
\startltxitem
 
214
\item asterisk 1
 
215
\item asterisk 2
 
216
\item asterisk 3
 
217
\stopltxitem
 
218
Asterisks loose:
 
219
 
 
220
\startltxitem
 
221
\item asterisk 1
 
222
 
 
223
\item asterisk 2
 
224
 
 
225
\item asterisk 3
 
226
 
 
227
\stopltxitem
 
228
Pluses tight:
 
229
 
 
230
\startltxitem
 
231
\item Plus 1
 
232
\item Plus 2
 
233
\item Plus 3
 
234
\stopltxitem
 
235
Pluses loose:
 
236
 
 
237
\startltxitem
 
238
\item Plus 1
 
239
 
 
240
\item Plus 2
 
241
 
 
242
\item Plus 3
 
243
 
 
244
\stopltxitem
 
245
Minuses tight:
 
246
 
 
247
\startltxitem
 
248
\item Minus 1
 
249
\item Minus 2
 
250
\item Minus 3
 
251
\stopltxitem
 
252
Minuses loose:
 
253
 
 
254
\startltxitem
 
255
\item Minus 1
 
256
 
 
257
\item Minus 2
 
258
 
 
259
\item Minus 3
 
260
 
 
261
\stopltxitem
 
262
\subsection{Ordered}
 
263
 
 
264
Tight:
 
265
 
 
266
\startitemize
 
267
\sym{1.} First
 
268
\sym{2.} Second
 
269
\sym{3.} Third
 
270
\stopitemize
 
271
and:
 
272
 
 
273
\startitemize
 
274
\sym{1.} One
 
275
\sym{2.} Two
 
276
\sym{3.} Three
 
277
\stopitemize
 
278
Loose using tabs:
 
279
 
 
280
\startitemize
 
281
\sym{1.} First
 
282
 
 
283
\sym{2.} Second
 
284
 
 
285
\sym{3.} Third
 
286
 
 
287
\stopitemize
 
288
and using spaces:
 
289
 
 
290
\startitemize
 
291
\sym{1.} One
 
292
 
 
293
\sym{2.} Two
 
294
 
 
295
\sym{3.} Three
 
296
 
 
297
\stopitemize
 
298
Multiple paragraphs:
 
299
 
 
300
\startitemize
 
301
\sym{1.} Item 1, graf one.
 
302
 
 
303
Item 1. graf two. The quick brown fox jumped over the lazy dog's back.
 
304
 
 
305
\sym{2.} Item 2.
 
306
 
 
307
\sym{3.} Item 3.
 
308
 
 
309
\stopitemize
 
310
\subsection{Nested}
 
311
 
 
312
\startltxitem
 
313
\item Tab
 
314
\startltxitem
 
315
\item Tab
 
316
\startltxitem
 
317
\item Tab
 
318
\stopltxitem
 
319
\stopltxitem
 
320
\stopltxitem
 
321
Here's another:
 
322
 
 
323
\startitemize
 
324
\sym{1.} First
 
325
\sym{2.} Second:
 
326
\startltxitem
 
327
\item Fee
 
328
\item Fie
 
329
\item Foe
 
330
\stopltxitem
 
331
\sym{3.} Third
 
332
\stopitemize
 
333
Same thing but with paragraphs:
 
334
 
 
335
\startitemize
 
336
\sym{1.} First
 
337
 
 
338
\sym{2.} Second:
 
339
 
 
340
\startltxitem
 
341
\item Fee
 
342
\item Fie
 
343
\item Foe
 
344
\stopltxitem
 
345
\sym{3.} Third
 
346
 
 
347
\stopitemize
 
348
\subsection{Tabs and spaces}
 
349
 
 
350
\startltxitem
 
351
\item this is a list item indented with tabs
 
352
 
 
353
\item this is a list item indented with spaces
 
354
 
 
355
\startltxitem
 
356
\item this is an example list item indented with tabs
 
357
 
 
358
\item this is an example list item indented with spaces
 
359
 
 
360
\stopltxitem
 
361
\stopltxitem
 
362
\subsection{Fancy list markers}
 
363
 
 
364
\startitemize[width=2em]
 
365
\sym{(2)} begins with 2
 
366
\sym{(3)} and now 3
 
367
 
 
368
with a continuation
 
369
 
 
370
\startitemize[width=2em]
 
371
\sym{iv.} sublist with roman numerals, starting with 4
 
372
\sym{v.} more items
 
373
\startitemize[width=2em]
 
374
\sym{(A)} a subsublist
 
375
\sym{(B)} a subsublist
 
376
\stopitemize
 
377
\stopitemize
 
378
\stopitemize
 
379
Nesting:
 
380
 
 
381
\startitemize
 
382
\sym{A.} Upper Alpha
 
383
\startitemize
 
384
\sym{I.} Upper Roman.
 
385
\startitemize[width=2em]
 
386
\sym{(6)} Decimal start with 6
 
387
\startitemize
 
388
\sym{c)} Lower alpha with paren
 
389
\stopitemize
 
390
\stopitemize
 
391
\stopitemize
 
392
\stopitemize
 
393
Autonumbering:
 
394
 
 
395
\startltxenum
 
396
\item Autonumber.
 
397
\item More.
 
398
\startltxenum
 
399
\item Nested.
 
400
\stopltxenum
 
401
\stopltxenum
 
402
Should not be a list item:
 
403
 
 
404
M.A. 2007
 
405
 
 
406
B. Williams
 
407
 
 
408
\thinrule
 
409
 
 
410
\section{Definition Lists}
 
411
 
 
412
Tight using spaces:
 
413
 
 
414
\startdescr{apple}
 
415
red fruit
 
416
 
 
417
\stopdescr
 
418
\startdescr{orange}
 
419
orange fruit
 
420
 
 
421
\stopdescr
 
422
\startdescr{banana}
 
423
yellow fruit
 
424
 
 
425
\stopdescr
 
426
 
 
427
Tight using tabs:
 
428
 
 
429
\startdescr{apple}
 
430
red fruit
 
431
 
 
432
\stopdescr
 
433
\startdescr{orange}
 
434
orange fruit
 
435
 
 
436
\stopdescr
 
437
\startdescr{banana}
 
438
yellow fruit
 
439
 
 
440
\stopdescr
 
441
 
 
442
Loose:
 
443
 
 
444
\startdescr{apple}
 
445
red fruit
 
446
 
 
447
 
 
448
\stopdescr
 
449
\startdescr{orange}
 
450
orange fruit
 
451
 
 
452
 
 
453
\stopdescr
 
454
\startdescr{banana}
 
455
yellow fruit
 
456
 
 
457
 
 
458
\stopdescr
 
459
 
 
460
Multiple blocks with italics:
 
461
 
 
462
\startdescr{{\em apple}}
 
463
red fruit
 
464
 
 
465
contains seeds, crisp, pleasant to taste
 
466
 
 
467
 
 
468
\stopdescr
 
469
\startdescr{{\em orange}}
 
470
orange fruit
 
471
 
 
472
\starttyping
 
473
{ orange code block }
 
474
\stoptyping
 
475
\startblockquote
 
476
orange block quote
 
477
 
 
478
\stopblockquote
 
479
 
 
480
 
 
481
\stopdescr
 
482
 
 
483
\section{HTML Blocks}
 
484
 
 
485
Simple block on one line:
 
486
 
 
487
foo
 
488
And nested without indentation:
 
489
 
 
490
foo
 
491
bar
 
492
Interpreted markdown in a table:
 
493
 
 
494
This is {\em emphasized}
 
495
And this is {\bf strong}
 
496
Here's a simple block:
 
497
 
 
498
foo
 
499
This should be a code block, though:
 
500
 
 
501
\starttyping
 
502
<div>
 
503
    foo
 
504
</div>
 
505
\stoptyping
 
506
As should this:
 
507
 
 
508
\starttyping
 
509
<div>foo</div>
 
510
\stoptyping
 
511
Now, nested:
 
512
 
 
513
foo
 
514
This should just be an HTML comment:
 
515
 
 
516
Multiline:
 
517
 
 
518
Code block:
 
519
 
 
520
\starttyping
 
521
<!-- Comment -->
 
522
\stoptyping
 
523
Just plain comment, with trailing spaces on the line:
 
524
 
 
525
Code:
 
526
 
 
527
\starttyping
 
528
<hr />
 
529
\stoptyping
 
530
Hr's:
 
531
 
 
532
\thinrule
 
533
 
 
534
\section{Inline Markup}
 
535
 
 
536
This is {\em emphasized}, and so {\em is this}.
 
537
 
 
538
This is {\bf strong}, and so {\bf is this}.
 
539
 
 
540
An {\em \useurl[2][/url][][emphasized link]\from[2]}.
 
541
 
 
542
{\bf {\em This is strong and em.}}
 
543
 
 
544
So is {\bf {\em this}} word.
 
545
 
 
546
{\bf {\em This is strong and em.}}
 
547
 
 
548
So is {\bf {\em this}} word.
 
549
 
 
550
This is code: \type{>}, \type{$}, \type{\}, \type{\$}, \type{<html>}.
 
551
 
 
552
\overstrikes{This is {\em strikeout}.}
 
553
 
 
554
Superscripts: a\high{bc}d a\high{{\em hello}} a\high{hello there}.
 
555
 
 
556
Subscripts: H\low{2}O, H\low{23}O, H\low{many of them}O.
 
557
 
 
558
These should not be superscripts or subscripts, because of the unescaped spaces: a\letterhat{}b c\letterhat{}d, a\lettertilde{}b c\lettertilde{}d.
 
559
 
 
560
\thinrule
 
561
 
 
562
\section{Smart quotes, ellipses, dashes}
 
563
 
 
564
\quotation{Hello,} said the spider. \quotation{\quote{Shelob} is my name.}
 
565
 
 
566
\quote{A}, \quote{B}, and \quote{C} are letters.
 
567
 
 
568
\quote{Oak,} \quote{elm,} and \quote{beech} are names of trees. So is \quote{pine.}
 
569
 
 
570
\quote{He said, \quotation{I want to go.}} Were you alive in the 70's?
 
571
 
 
572
Here is some quoted \quote{\type{code}} and a \quotation{\useurl[3][http://example.com/?foo=1&bar=2][][quoted link]\from[3]}.
 
573
 
 
574
Some dashes: one---two---three---four---five.
 
575
 
 
576
Dashes between numbers: 5--7, 255--66, 1987--1999.
 
577
 
 
578
Ellipses\ldots{}and\ldots{}and\ldots{}.
 
579
 
 
580
\thinrule
 
581
 
 
582
\section{Special Characters}
 
583
 
 
584
Here is some unicode:
 
585
 
 
586
\startltxitem
 
587
\item I hat: Î
 
588
\item o umlaut: ö
 
589
\item section: §
 
590
\item set membership: ∈
 
591
\item copyright: ©
 
592
\stopltxitem
 
593
AT\&T has an ampersand in their name.
 
594
 
 
595
AT\&T is another way to write it.
 
596
 
 
597
This \& that.
 
598
 
 
599
4 \letterless{} 5.
 
600
 
 
601
6 \lettermore{} 5.
 
602
 
 
603
Backslash: \letterbackslash{}
 
604
 
 
605
Backtick: `
 
606
 
 
607
Asterisk: *
 
608
 
 
609
Underscore: \letterunderscore{}
 
610
 
 
611
Left brace: \letteropenbrace{}
 
612
 
 
613
Right brace: \letterclosebrace{}
 
614
 
 
615
Left bracket: [
 
616
 
 
617
Right bracket: ]
 
618
 
 
619
Left paren: (
 
620
 
 
621
Right paren: )
 
622
 
 
623
Greater-than: \lettermore{}
 
624
 
 
625
Hash: \#
 
626
 
 
627
Period: .
 
628
 
 
629
Bang: !
 
630
 
 
631
Plus: +
 
632
 
 
633
Minus: -
 
634
 
 
635
\thinrule
 
636
 
 
637
\section{Links}
 
638
 
 
639
\subsection{Explicit}
 
640
 
 
641
Just a \useurl[4][/url/][][URL]\from[4].
 
642
 
 
643
\useurl[5][/url/][][URL and title]\from[5].
 
644
 
 
645
\useurl[6][/url/][][URL and title]\from[6].
 
646
 
 
647
\useurl[7][/url/][][URL and title]\from[7].
 
648
 
 
649
\useurl[8][/url/][][URL and title]\from[8]
 
650
 
 
651
\useurl[9][/url/][][URL and title]\from[9]
 
652
 
 
653
\useurl[10][/url/with_underscore][][with\letterunderscore{}underscore]\from[10]
 
654
 
 
655
\useurl[11][mailto:nobody@nowhere.net][][Email link]\from[11]
 
656
 
 
657
\useurl[12][][][Empty]\from[12].
 
658
 
 
659
\subsection{Reference}
 
660
 
 
661
Foo \useurl[13][/url/][][bar]\from[13].
 
662
 
 
663
Foo \useurl[14][/url/][][bar]\from[14].
 
664
 
 
665
Foo \useurl[15][/url/][][bar]\from[15].
 
666
 
 
667
With \useurl[16][/url/][][embedded [brackets]]\from[16].
 
668
 
 
669
\useurl[17][/url/][][b]\from[17] by itself should be a link.
 
670
 
 
671
Indented \useurl[18][/url][][once]\from[18].
 
672
 
 
673
Indented \useurl[19][/url][][twice]\from[19].
 
674
 
 
675
Indented \useurl[20][/url][][thrice]\from[20].
 
676
 
 
677
This should [not][] be a link.
 
678
 
 
679
\starttyping
 
680
[not]: /url
 
681
\stoptyping
 
682
Foo \useurl[21][/url/][][bar]\from[21].
 
683
 
 
684
Foo \useurl[22][/url/][][biz]\from[22].
 
685
 
 
686
\subsection{With ampersands}
 
687
 
 
688
Here's a \useurl[23][http://example.com/?foo=1&bar=2][][link with an ampersand in the URL]\from[23].
 
689
 
 
690
Here's a link with an amersand in the link text: \useurl[24][http://att.com/][][AT\&T]\from[24].
 
691
 
 
692
Here's an \useurl[25][/script?foo=1&bar=2][][inline link]\from[25].
 
693
 
 
694
Here's an \useurl[26][/script?foo=1&bar=2][][inline link in pointy braces]\from[26].
 
695
 
 
696
\subsection{Autolinks}
 
697
 
 
698
With an ampersand: \useurl[27][http://example.com/?foo=1&bar=2][][http://example.com/?foo=1\&bar=2]\from[27]
 
699
 
 
700
\startltxitem
 
701
\item In a list?
 
702
\item \useurl[28][http://example.com/][][http://example.com/]\from[28]
 
703
\item It should.
 
704
\stopltxitem
 
705
An e-mail address: \useurl[29][mailto:nobody@nowhere.net][][nobody@nowhere.net]\from[29]
 
706
 
 
707
\startblockquote
 
708
Blockquoted: \useurl[30][http://example.com/][][http://example.com/]\from[30]
 
709
 
 
710
\stopblockquote
 
711
 
 
712
Auto-links should not occur here: \type{<http://example.com/>}
 
713
 
 
714
\starttyping
 
715
or here: <http://example.com/>
 
716
\stoptyping
 
717
\thinrule
 
718
 
 
719
\section{Images}
 
720
 
 
721
From \quotation{Voyage dans la Lune} by Georges Melies (1902):
 
722
 
 
723
\placefigure
 
724
[]
 
725
[fig:lalune]
 
726
{Voyage dans la Lune}
 
727
{\externalfigure[lalune.jpg]}
 
728
 
 
729
Here is a movie \placefigure
 
730
[]
 
731
[fig:movie]
 
732
{}
 
733
{\externalfigure[movie.jpg]} icon.
 
734
 
 
735
\thinrule
 
736
 
 
737
\section{Footnotes}
 
738
 
 
739
Here is a footnote reference,\footnote{Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.
 
740
 
 
741
} and another.\footnote{Here's the long note. This one contains multiple blocks.
 
742
 
 
743
Subsequent blocks are indented to show that they belong to the footnote (as with list items).
 
744
 
 
745
\starttyping
 
746
  { <code> }
 
747
\stoptyping
 
748
If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.
 
749
 
 
750
} This should {\em not} be a footnote reference, because it contains a space.[\letterhat{}my note] Here is an inline note.\footnote{This is {\em easier} to type. Inline notes may contain \useurl[31][http://google.com][][links]\from[31] and \type{]} verbatim characters, as well as [bracketed text].
 
751
 
 
752
}
 
753
 
 
754
\startblockquote
 
755
Notes can go in quotes.\footnote{In quote.
 
756
 
 
757
}
 
758
 
 
759
\stopblockquote
 
760
 
 
761
\startitemize
 
762
\sym{1.} And in list items.\footnote{In list.
 
763
 
 
764
}
 
765
\stopitemize
 
766
This paragraph should not be part of the note, as it is not indented.
 
767
 
 
768
 
 
769
\stoptext
 
770