quickbook/test/preformatted-1_1.quickbook
Daniel James 506310c682 Quickbook: Fix the preformatted parser for 1.6.
In the old parser, the `eol` never matched anything because the `space`
would gobble up any newlines, so I'm pretty sure the intent was to use
`blank` to remove any leading spaces. So do that in 1.6.

[SVN r75521]
2011-11-17 21:01:55 +00:00

33 lines
545 B
Plaintext

[article Preformatted
]
[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]