diff options
author | tom-audm <45368668+tom-audm@users.noreply.github.com> | 2020-04-23 21:07:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 18:07:03 -0700 |
commit | 3e52c402d0744f36462aeb3882d2cf2844529b0f (patch) | |
tree | b0497a5a46d91a55696f50ec11e38d857970aab8 | |
parent | 6baacb51bb0dd007edd673f97cd4cff3da06a724 (diff) | |
download | pandoc-3e52c402d0744f36462aeb3882d2cf2844529b0f.tar.gz |
Manual: separate adjacent verbatim code blocks (#6307)
-rw-r--r-- | MANUAL.txt | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 98f225cdd..db658536b 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -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. |