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
|
#\#CIF_2.0
data_text_fields
# Neither folded nor prefixed
_plain1 # some lines have trailing whitespace
;\\
line 2\
line 3
;
_plain2
;;\
;
_terminators # mixed line terminators
;line 1
line 2
line 3
end
;
# Basic line folding
_folded1
;\
A (not so) long\
line.
A normal line.
NOT a long line.\
;
# Line folding with trailing space characters
_folded2
;\
line 1
line \
2
;
# Text prefixing
_prefixed1
; \
_embedded
;
;
;
_prefixed2
;pfx>\
pfx>_embedded
pfx>;
pfx>;
;
# Combined prefixing and line-folding
_pfx_folded
;> \\
> line 1 \
> is folded\
> twice.
;
# Empty folded and prefixed fields
_folded_empty
;\
;
_prefixed_empty
;>>\
;
_pfx_fold_empty
;πφχ\\
;
|