There are entire sentences missing in our generated man pages.
<p>The most recent release of libbson is 1.4.1 and can be <link href="https://github.com/mongodb/libbson/releases/download/1.4.1/libbson-1.4.1.tar.gz">downloaded here</link>. The following snippet will download and extract the current release of the driver.</p>
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/1.4.1/libbson-1.4.1.tar.gz</input>
<output style="prompt">$ </output><input>tar -xzf libbson-1.4.1.tar.gz</input>
<output style="prompt">$ </output><input>cd libbson-1.4.1/</input></screen>
becomes
The most recent release of libbson is 1.4.1 and can be
.B downloaded here
. The following snippet will download and extract the current release of the driver.
.B $
.B wget https://github.com/mongodb/libbson/releases/download/1.4.1/libbson-1.4.1.tar.gz
.B $
.B tar -xzf libbson-1.4.1.tar.gz
.B $
.B cd libbson-1.4.1/
which is rendered as:
The most recent release of libbson is 1.4.1 and can be downloaded here
$ wget https://github.com/mongodb/libbson/releases/download/1.4.1/libbson-1.4.1.tar.gz $ tar -xzf libbson-1.4.1.tar.gz $ cd libbson-1.4.1/
The
The following snippet will download and extract the current release of the driver.
is missing, and the code sample is all in one line.