summaryrefslogtreecommitdiff
path: root/tools/quickbook/test/preformatted-1_6.quickbook
diff options
context:
space:
mode:
Diffstat (limited to 'tools/quickbook/test/preformatted-1_6.quickbook')
-rw-r--r--tools/quickbook/test/preformatted-1_6.quickbook33
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/quickbook/test/preformatted-1_6.quickbook b/tools/quickbook/test/preformatted-1_6.quickbook
new file mode 100644
index 0000000000..25c6bc5c55
--- /dev/null
+++ b/tools/quickbook/test/preformatted-1_6.quickbook
@@ -0,0 +1,33 @@
+[article Preformatted
+[quickbook 1.6]
+]
+
+[section Preformatted]
+
+Here's the ubiquitous /Hello World/ program in C++.
+
+[pre
+#include <iostream>
+
+int main()
+{
+ std::cout << "Hello, World!" << std::endl;
+ return 0;
+}
+]
+
+The code should appear as a single block of code in a monospaced font and with
+no syntax highlighting. The fifth and sixth lines should appear indented to the
+right, aligning under `main`, on line 3.
+
+Here's a one line function definitition: [pre void something(); ].
+
+And some indented code:
+
+[pre
+ void go()
+ {
+ }
+]
+
+[endsect]