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/Vt | |
parent | e89ce06acbd8218e6d0eb1ba09458d12ec60ee25 (diff) | |
download | mandoc-6720c2e5aeecf3fc18ed94d21fe39caffaa70f11.tar.gz |
first batch of -T markdown tests
Diffstat (limited to 'regress/mdoc/Vt')
-rw-r--r-- | regress/mdoc/Vt/Makefile | 1 | ||||
-rw-r--r-- | regress/mdoc/Vt/child.out_markdown | 20 | ||||
-rw-r--r-- | regress/mdoc/Vt/font.out_markdown | 13 | ||||
-rw-r--r-- | regress/mdoc/Vt/noarg.out_markdown | 14 | ||||
-rw-r--r-- | regress/mdoc/Vt/spacing.out_markdown | 21 |
5 files changed, 69 insertions, 0 deletions
diff --git a/regress/mdoc/Vt/Makefile b/regress/mdoc/Vt/Makefile index d1f0a9bd..b6d9f2b2 100644 --- a/regress/mdoc/Vt/Makefile +++ b/regress/mdoc/Vt/Makefile @@ -2,5 +2,6 @@ REGRESS_TARGETS = noarg spacing font child LINT_TARGETS = noarg +MARKDOWN_TARGETS = noarg spacing font child .include <bsd.regress.mk> diff --git a/regress/mdoc/Vt/child.out_markdown b/regress/mdoc/Vt/child.out_markdown new file mode 100644 index 00000000..49d984e1 --- /dev/null +++ b/regress/mdoc/Vt/child.out_markdown @@ -0,0 +1,20 @@ +VT-CHILD(1) - General Commands Manual + +# NAME + +**Vt-child** - the variable type macro does not want children + +# SYNOPSIS + +*extern **int** `errno`* + +# DESCRIPTION + +various types, for example +*unsigned* **int**, +*long* `int` +and +*float*, +*double* + +OpenBSD - July 2, 2014 diff --git a/regress/mdoc/Vt/font.out_markdown b/regress/mdoc/Vt/font.out_markdown new file mode 100644 index 00000000..c210b5ba --- /dev/null +++ b/regress/mdoc/Vt/font.out_markdown @@ -0,0 +1,13 @@ +VT-FONT(1) - General Commands Manual + +# NAME + +**Vt-font** - changing fonts inside the variable type macro + +# DESCRIPTION + +normal text +*emphasis**bold**back* +trailing text + +OpenBSD - July 9, 2012 diff --git a/regress/mdoc/Vt/noarg.out_markdown b/regress/mdoc/Vt/noarg.out_markdown new file mode 100644 index 00000000..4ed95290 --- /dev/null +++ b/regress/mdoc/Vt/noarg.out_markdown @@ -0,0 +1,14 @@ +VT-NOARG(1) - General Commands Manual + +# NAME + +**Vt-noarg** - variable type macro without arguments + +# DESCRIPTION + +with arguments +*signed int* +no arguments +end of test document + +OpenBSD - January 20, 2011 diff --git a/regress/mdoc/Vt/spacing.out_markdown b/regress/mdoc/Vt/spacing.out_markdown new file mode 100644 index 00000000..58bb771d --- /dev/null +++ b/regress/mdoc/Vt/spacing.out_markdown @@ -0,0 +1,21 @@ +VT-SPACING(1) - General Commands Manual + +# NAME + +**Vt-spacing** - spacing around the variable type macro + +# SYNOPSIS + +*extern char \*\*environ* +*extern int errno* + +# DESCRIPTION + +various types, for example +*unsigned int*, +*long int* +and +*float*, +*double* + +OpenBSD - July 8, 2012 |