git: ec571d240a - main - books/fdp-primer: correct ordered/unordered list examples
Ceri Davies <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by ceri: URL: https://cgit.FreeBSD.org/doc/commit/?id=ec571d240a17245ac711e9d74e3e8f7dd04d7ccc commit ec571d240a17245ac711e9d74e3e8f7dd04d7ccc Author: Ceri Davies <[email protected]> AuthorDate: 2021-07-21 13:42:43 +0000 Commit: Ceri Davies <[email protected]> CommitDate: 2021-07-21 13:42:43 +0000 books/fdp-primer: correct ordered/unordered list examples Reported by: Pau Amma <[email protected]> --- .../fdp-primer/asciidoctor-primer/_index.adoc | 36 +++++++++++----------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc index e74e4feabe..27634f98e3 100644 --- a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc +++ b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc @@ -140,44 +140,44 @@ To get more information about lists check link:https://docs.asciidoctor.org/asci [[asciidoctor-ordered-lists]] === Ordered lists -To create an ordered list use the `*` character. +To create an ordered list use the `.` character. For example this is an ordered list. .... -* First item -* Second item -** Subsecond item -* Third item +. First item +. Second item +.. Subsecond item +. Third item .... And this would be rendered as. -* First item -* Second item -** Subsecond item -* Third item +. First item +. Second item +.. Subsecond item +. Third item [[asciidoctor-unordered-lists]] === Unordered lists -To create an unordered list use the `.` character. +To create an unordered list use the `*` character. For example this is an unordered list. .... -. First item -. Second item -.. Subsecond item -. Third item +* First item +* Second item +** Subsecond item +* Third item .... And this would be rendered as. -. First item -. Second item -.. Subsecond item -. Third item +* First item +* Second item +** Subsecond item +* Third item [[asciidoctor-links]] == Links _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-doc-all To unsubscribe, send any mail to "[email protected]"