/usr/share/doc/filepp/examples/test.html.in is in filepp 1.8.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #comment This is a filepp comment - note continued line on next line
#define TITLE Test Document \
for filepp
#include <header.html.in>
<p align=center>__FILEPP_INPUT__ version __VERSION__ on __DATE__ at
__TIME__.</p>
#define SHOW_HOMEPAGE
#ifdef SHOW_HOMEPAGE
<hr>
<h2 align=center><a href="http://www.cabaret.demon.co.uk/filepp/">
filepp homepage</a></h2>
#endif
#if (!defined((SHOW_HOMEPAGE))) || defined DONT_SHOW_HOMEPAGE
<hr>
<p align=center>Homepage will not be shown</p>
#endif
#define FOUR 4
#if FOUR == (2+3)
<hr>
<p align=center>filepp can't do sums!</p>
#elif FOUR == (1+3)
<hr>
<p align=center>filepp can do sums too!</p>
#endif
#define GOTARGS(arg1, arg2) This has macro arguments: "arg1" and "arg2"
<hr>
<p align=center>GOTARGS(foo bar, baa baa \
black sheep)</p>
#if 0
You'll never see this!
#endif
# comment Keywords can be indented by either tabs or spaces
# ifdef HIDDEN
<hr>
<p align=center>The Hidden Link at line __LINE__!</p>
#else
<hr>
<p align=center>The Hidden Link is remains hidden!</p>
#endif
<hr>
<p align=center>Filepp testsuite: Any output between here and OK is an error</p>
#include <testsuite>
<p align=center>OK</p>
#define FOOTER_STRING The End.
#include "footer.html.in"
|