Skip to main content

Appendix F Some Runestone Elements

View Source for appendix
<appendix>
    <title>Some Runestone Elements</title>
    <p>These elements should end up in the Runestone manifest.</p>
    <datafile filename="datafile-appendix.txt" xml:id="datafile-appendix" label="datafile-appendix">
        <pre>
        Ipsum lorem...
        </pre>
    </datafile>

    <program language="py" xml:id="program-appendix" label="program-appendix">
        print("Hello from the appendix!")
    </program>
</appendix>
These elements should end up in the Runestone manifest.
View Source for datafile
<datafile filename="datafile-appendix.txt" xml:id="datafile-appendix" label="datafile-appendix">
    <pre>
    Ipsum lorem...
    </pre>
</datafile>
Data: datafile-appendix.txt
Ipsum lorem...
View Source for program
<program language="py" xml:id="program-appendix" label="program-appendix">
    print("Hello from the appendix!")
</program>
print("Hello from the appendix!")