38 lines
794 B
Text
Executable file
38 lines
794 B
Text
Executable file
|
|
= Preface
|
|
|
|
In some of the example listings, what is meant to be displayed on one line does not fit inside the available page width.These lines have been broken up. A '\' at the end of a line means that a break has been introduced to fit in the page, with the following lines indented.
|
|
So:
|
|
[source]
|
|
----
|
|
Let's pretend to have an extremely \
|
|
long line that \
|
|
does not fit
|
|
This one is short
|
|
----
|
|
Is really:
|
|
|
|
[source]
|
|
----
|
|
Let's pretend to have an extremely long line that does not fit
|
|
This one is short
|
|
----
|
|
|
|
{% if community %}
|
|
community set
|
|
{% else %}
|
|
community VARIABLE NOT SET
|
|
{% endif %}
|
|
|
|
{% if book.community %}
|
|
book.community set
|
|
{% else %}
|
|
book.community VARIABLE NOT SET
|
|
{% endif %}
|
|
|
|
{% if product %}
|
|
PRODUCT!
|
|
{% else %}
|
|
product VARIABLE NOT SET
|
|
{% endif %}
|
|
|