diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-05 19:59:33 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-05 19:59:33 +0000 |
commit | 6720c2e5aeecf3fc18ed94d21fe39caffaa70f11 (patch) | |
tree | e6edc639916f43b52d2efb638f3621e9b9f65207 /regress/mdoc/Fo/break.out_markdown | |
parent | e89ce06acbd8218e6d0eb1ba09458d12ec60ee25 (diff) | |
download | mandoc-6720c2e5aeecf3fc18ed94d21fe39caffaa70f11.tar.gz |
first batch of -T markdown tests
Diffstat (limited to 'regress/mdoc/Fo/break.out_markdown')
-rw-r--r-- | regress/mdoc/Fo/break.out_markdown | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/regress/mdoc/Fo/break.out_markdown b/regress/mdoc/Fo/break.out_markdown new file mode 100644 index 00000000..3a551bf8 --- /dev/null +++ b/regress/mdoc/Fo/break.out_markdown @@ -0,0 +1,45 @@ +FO-BREAK(1) - General Commands Manual + +# NAME + +**Fo-break** - line breaks in function blocks + +# SYNOPSIS + +**using Fn:** + +*my\_long\_return\_type \*‌* +**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*); + +*void* +**this function name is so ridiculously long that it will not fit on the line**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*, *my\_long\_type third\_argument*); + +**using Fo and single-argument Fa:** + +*my\_long\_return\_type \*‌* +**my\_long\_function**(*my\_long\_type first\_argument*, +*my\_long\_type second\_argument*); + +*void* +**this function name is so ridiculously long that it will not fit on the line**(*my\_long\_type first\_argument*, +*my\_long\_type second\_argument*, +*my\_long\_type third\_argument*); + +**using Fo and multi-argument Fa:** + +*my\_long\_return\_type \*‌* +**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*); + +# DESCRIPTION + +using Fn: +**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*) + +using Fo and single-argument Fa: +**my\_long\_function**(*my\_long\_type first\_argument*, +*my\_long\_type second\_argument*) + +using Fo and multi-argument Fa: +**my\_long\_function**(*my\_long\_type first\_argument*, *my\_long\_type second\_argument*) + +OpenBSD - April 8, 2014 |