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
|
# Displaying and Running External Sources
~~~md
```file
path: hello_world.py
lang: python
```
~~~
```file
path: hello_world.py
lang: python
```
The source file above is run below:
```terminal8
python ./hello_world.py
```
# Loading and Transforming External Files
~~~md
```file
path: 1x1.png
lang: text
transform: xxd
lines:
end: 5
```
~~~
Below are the first five lines of the 1x1.png file after being run through
the `xxd` program:
```file
path: 1x1.png
lang: text
transform: xxd
lines:
end: 5
```
|