Manual: separate adjacent verbatim code blocks (#6307)

This commit is contained in:
tom-audm 2020-04-23 21:07:03 -04:00 committed by GitHub
parent 6baacb51bb
commit 3e52c402d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3857,30 +3857,42 @@ output.) The block may contain just a title, a title and an author,
or all three elements. If you want to include an author but no
title, or a title and a date but no author, you need a blank line:
%
% Author
```
%
% Author
```
% My title
%
% June 15, 2006
```
% My title
%
% June 15, 2006
```
The title may occupy multiple lines, but continuation lines must
begin with leading space, thus:
% My title
on multiple lines
```
% My title
on multiple lines
```
If a document has multiple authors, the authors may be put on
separate lines with leading space, or separated by semicolons, or
both. So, all of the following are equivalent:
% Author One
Author Two
```
% Author One
Author Two
```
% Author One; Author Two
```
% Author One; Author Two
```
% Author One;
Author Two
```
% Author One;
Author Two
```
The date must fit on one line.