diff options
author | Ed Santiago <santiago@redhat.com> | 2021-01-19 08:58:09 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-01-19 12:59:03 -0700 |
commit | 37abec240a5f9c0165aa074bb6a58eea1fc665c5 (patch) | |
tree | ab2a685f3ac148bff3d1e1678cfb93cd825dcd8c /docs/source/markdown/podman-build.1.md | |
parent | 8c6df5e93e6941a7f50da651678751f7dfec900e (diff) | |
download | podman-37abec240a5f9c0165aa074bb6a58eea1fc665c5.tar.gz podman-37abec240a5f9c0165aa074bb6a58eea1fc665c5.tar.bz2 podman-37abec240a5f9c0165aa074bb6a58eea1fc665c5.zip |
[CI:DOCS] fix go-md2man HTMLSpan warnings
I'm tired of seeing these every time I run 'make':
WARNING: go-md2man does not handle node type HTMLSpan
Cause: left-angle-brackets ( < ) in document source
Solution:
1) backquote-escape those that need to be shown, usually
ones referring to an argument or email address; or
2) Actual HTML ( <sup> and <a> ) which are meant to be
shown in generated HTML docs but can't be shown in
man pages, we filter out via a sed expression.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'docs/source/markdown/podman-build.1.md')
-rw-r--r-- | docs/source/markdown/podman-build.1.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/markdown/podman-build.1.md b/docs/source/markdown/podman-build.1.md index 29f763d54..61c05fdef 100644 --- a/docs/source/markdown/podman-build.1.md +++ b/docs/source/markdown/podman-build.1.md @@ -394,7 +394,7 @@ Name of the manifest list to which the image will be added. Creates the manifest if it does not exist. This option is useful for building multi architecture images. #### **--memory**, **-m**=*LIMIT* -Memory limit (format: <number>[<unit>], where unit = b (bytes), k (kilobytes), +Memory limit (format: `<number>[<unit>]`, where unit = b (bytes), k (kilobytes), m (megabytes), or g (gigabytes)) Allows you to constrain the memory available to a container. If the host @@ -944,11 +944,11 @@ useradd to stop creating the lastlog file. podman(1), buildah(1), containers-registries.conf(5), crun(8), runc(8), useradd(8), podman-ps(1), podman-rm(1) ## HISTORY -Aug 2020, Additional options and .dockerignore added by Dan Walsh <dwalsh@redhat.com> +Aug 2020, Additional options and .dockerignore added by Dan Walsh `<dwalsh@redhat.com>` -May 2018, Minor revisions added by Joe Doss <joe@solidadmin.com> +May 2018, Minor revisions added by Joe Doss `<joe@solidadmin.com>` -December 2017, Originally compiled by Tom Sweeney <tsweeney@redhat.com> +December 2017, Originally compiled by Tom Sweeney `<tsweeney@redhat.com>` ## FOOTNOTES <a name="Footnote1">1</a>: The Podman project is committed to inclusivity, a |