Skip to content

Commit 39ff154

Browse files
authored
DOC: Fix weird code tags in docs/index.html
It seems this needs to be regenerated manually. I don't feel like doing that, so I'm just editing it by hand. Yes it will be overwritten, but my other changes should make this stick.
1 parent 18f0be0 commit 39ff154

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,8 +1552,8 @@ <h3>Instance variables</h3>
15521552
if <code>False</code>, an
15531553
exception will be raised if a file with the same name already exists.
15541554
mode=<code>x</code> is identical to mode=<code>w</code> with clobber=False.</p>
1555-
<p><strong><code>format</code></strong>: underlying file format (one of <code>'NETCDF4',
1556-
'NETCDF4_CLASSIC', 'NETCDF3_CLASSIC'&lt;code&gt;, &lt;/code&gt;'NETCDF3_64BIT_OFFSET'</code> or
1555+
<p><strong><code>format</code></strong>: underlying file format (one of <code>'NETCDF4'</code>,
1556+
<code>'NETCDF4_CLASSIC'</code>, <code>'NETCDF3_CLASSIC'</code>, <code>'NETCDF3_64BIT_OFFSET'</code> or
15571557
<code>'NETCDF3_64BIT_DATA'</code>.
15581558
Only relevant if <code>mode = 'w'</code> (if <code>mode = 'r','a'</code> or <code>'r+'</code> the file format
15591559
is automatically detected). Default <code>'NETCDF4'</code>, which means the data is
@@ -1637,8 +1637,8 @@ <h3>Static methods</h3>
16371637
suffix replaced by <code>.nc</code> is used..</p>
16381638
<p><strong><code>mode</code></strong>:
16391639
Access mode to open Dataset (Default <code>'a'</code>).</p>
1640-
<p><strong><code>format</code></strong>: underlying file format to use (one of <code>'NETCDF4',
1641-
'NETCDF4_CLASSIC', 'NETCDF3_CLASSIC'&lt;code&gt;, &lt;/code&gt;'NETCDF3_64BIT_OFFSET'</code> or
1640+
<p><strong><code>format</code></strong>: underlying file format to use (one of <code>'NETCDF4'</code>,
1641+
<code>'NETCDF4_CLASSIC'</code>, <code>'NETCDF3_CLASSIC'</code>, <code>'NETCDF3_64BIT_OFFSET'</code> or
16421642
<code>'NETCDF3_64BIT_DATA'</code>. Default <code>'NETCDF4'</code>.</p>
16431643
<p>Dataset instance for <code>ncfilename</code> is returned.</p></div>
16441644
</dd>
@@ -1912,8 +1912,8 @@ <h3>Methods</h3>
19121912
<code>least_significant_digit</code>. Application programs should never modify
19131913
these attributes. The <code>dimensions</code> attribute is a tuple containing the
19141914
names of the dimensions associated with this variable. The <code>dtype</code>
1915-
attribute is a string describing the variable's data type (<code>i4, f8,
1916-
S1,&lt;code&gt; etc). The &lt;/code&gt;shape</code> attribute is a tuple describing the current
1915+
attribute is a string describing the variable's data type (<code>i4</code>, <code>f8</code>,
1916+
<code>S1</code>, etc). The <code>shape</code> attribute is a tuple describing the current
19171917
sizes of all the variable's dimensions. The <code>name</code> attribute is a
19181918
string containing the name of the Variable instance.
19191919
The <code>least_significant_digit</code>
@@ -2347,8 +2347,8 @@ <h3>Methods</h3>
23472347
<dd>
23482348
<div class="desc"><p>Class for reading multi-file netCDF Datasets, making variables
23492349
spanning multiple files appear as if they were in one file.
2350-
Datasets must be in <code>NETCDF4_CLASSIC, NETCDF3_CLASSIC, NETCDF3_64BIT_OFFSET
2351-
or NETCDF3_64BIT_DATA&lt;code&gt; format (&lt;/code&gt;NETCDF4</code> Datasets won't work).</p>
2350+
Datasets must be in <code>NETCDF4_CLASSIC</code>, <code>NETCDF3_CLASSIC</code>, <code>NETCDF3_64BIT_OFFSET</code>
2351+
or <code>NETCDF3_64BIT_DATA</code> format (<code>NETCDF4</code> Datasets won't work).</p>
23522352
<p>Adapted from <a href="http://pysclint.sourceforge.net/pycdf">pycdf</a> by Andre Gosselin.</p>
23532353
<p>Example usage (See <code><a title="netCDF4.MFDataset" href="#netCDF4.MFDataset">MFDataset</a></code> for more details):</p>
23542354
<pre><code class="language-python">&gt;&gt;&gt; import numpy as np

0 commit comments

Comments
 (0)