.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "NOKOGIRI 1" .TH NOKOGIRI 1 2024-03-17 "" "" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME nokogiri \- an HTML, XML, SAX, and Reader parser .SH DESCRIPTION .IX Header "DESCRIPTION" Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri’s many features is the ability to search documents via XPath or CSS3 selectors. The \fBnokogiri\fR command parses a document, and launches an interactive ruby session (\fBirb\fR(1)), allowing one to analysing the result interactively. .SH SYNOPSYS .IX Header "SYNOPSYS" \&\fBnokogiri\fR <\fIuri\fR|\fIpath\fR> [\fIoptions\fR] .SH OPTIONS .IX Header "OPTIONS" .IP "\fB\-\-type\fR [\fITYPE\fR]" 4 .IX Item "--type [TYPE]" Set the type of the document to be parsed .IP "\fB\-E\fR, \fB\-\-encoding\fR \fIencoding\fR" 4 .IX Item "-E, --encoding encoding" Set the encoding of the document .IP "\fB\-e\fR \fIcommand\fR" 4 .IX Item "-e command" Specifies script from command-line .IP "\fB\-\-rng\fR <\fIuri\fR|\fIpath\fR>" 4 .IX Item "--rng " Validate using this rng file .IP "\fB\-?\fR, \fB\-\-help\fR" 4 .IX Item "-?, --help" Show a message very similar to this man page .IP "\fB\-v\fR, \fB\-\-version\fR" 4 .IX Item "-v, --version" Show the version of the program .SH EXAMPLES .IX Header "EXAMPLES" nokogiri http://www.ruby\-lang.org/ .PP nokogiri ./public/index.html .PP curl \-s http://nokogiri.org | nokogiri \-e'p \f(CW$_\fR.css("h1").length'