summaryrefslogtreecommitdiff
path: root/sfeed_web.1
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 13:07:45 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-01-27 15:24:02 +0100
commit645ef7420056796e6d2716bf920b8704451912ac (patch)
tree17f7ad1a29673a5c5a0feaad33ee061c59626c42 /sfeed_web.1
parent2f8a83288d91ea0abc2e4ebd6754513ee3ad37ec (diff)
typofixes
Diffstat (limited to 'sfeed_web.1')
-rw-r--r--sfeed_web.116
1 files changed, 8 insertions, 8 deletions
diff --git a/sfeed_web.1 b/sfeed_web.1
index 2fe4409..dda12fd 100644
--- a/sfeed_web.1
+++ b/sfeed_web.1
@@ -1,31 +1,31 @@
-.Dd January 1, 2021
+.Dd January 26, 2021
.Dt SFEED_WEB 1
.Os
.Sh NAME
.Nm sfeed_web
-.Nd finds urls to feeds from a HTML webpage
+.Nd finds URLs to feeds from a HTML webpage
.Sh SYNOPSIS
.Nm
.Op Ar baseurl
.Sh DESCRIPTION
.Nm
reads the HTML website as XML or HTML data from stdin and writes the found
-urls to stdout.
+URLs to stdout.
.Sh OPTIONS
.Bl -tag -width 8n
.It Ar baseurl
-Optional base url to use for found feed urls that are relative.
+Optional base URL to use for found feed URLs that are relative.
.El
.Sh OUTPUT FORMAT
url<TAB>content\-type<newline>
.Bl -tag -width Ds
.It url
-Found relative or absolute url.
+Found relative or absolute URL.
.Pp
-For relative urls if a <base href="..." /> tag is found it will be used,
+For relative URLs if a <base href="..." /> tag is found it will be used,
otherwise if the
.Ar baseurl
-option is specified then that is used, if neither are set then the relative url
+option is specified then that is used, if neither are set then the relative URL
is printed.
.It content\-type
Usually application/atom+xml or application/rss+xml.
@@ -33,7 +33,7 @@ Usually application/atom+xml or application/rss+xml.
.Sh EXIT STATUS
.Ex -std
.Sh EXAMPLES
-Get urls from xkcd website:
+Get URLs from xkcd website:
.Bd -literal
curl -s -L 'http://www.xkcd.com/' | sfeed_web 'http://www.xkcd.com/'
.Ed