fixed inconsistent subheading levels (### or ####)

This commit is contained in:
Elena Glassman 2017-02-15 14:28:09 -08:00 коммит произвёл Mike Bostock
Родитель b080bf3796
Коммит 5f9b9d50d8
1 изменённых файлов: 9 добавлений и 9 удалений

18
API.md
Просмотреть файл

@ -39,7 +39,7 @@ D3 uses [semantic versioning](http://semver.org/). The current version is expose
Array manipulation, ordering, searching, summarizing, etc.
#### [Statistics](https://github.com/d3/d3-array/blob/master/README.md#statistics)
### [Statistics](https://github.com/d3/d3-array/blob/master/README.md#statistics)
Methods for computing basic summary statistics.
@ -53,7 +53,7 @@ Methods for computing basic summary statistics.
* [d3.variance](https://github.com/d3/d3-array/blob/master/README.md#variance) - compute the variance of an array of numbers.
* [d3.deviation](https://github.com/d3/d3-array/blob/master/README.md#deviation) - compute the standard deviation of an array of numbers.
#### [Search](https://github.com/d3/d3-array/blob/master/README.md#search)
### [Search](https://github.com/d3/d3-array/blob/master/README.md#search)
Methods for searching arrays for a specific element.
@ -67,7 +67,7 @@ Methods for searching arrays for a specific element.
* [d3.ascending](https://github.com/d3/d3-array/blob/master/README.md#ascending) - compute the natural order of two values.
* [d3.descending](https://github.com/d3/d3-array/blob/master/README.md#descending) - compute the natural order of two values.
#### [Transformations](https://github.com/d3/d3-array/blob/master/README.md#transformations)
### [Transformations](https://github.com/d3/d3-array/blob/master/README.md#transformations)
Methods for transforming arrays and for generating new arrays.
@ -81,7 +81,7 @@ Methods for transforming arrays and for generating new arrays.
* [d3.transpose](https://github.com/d3/d3-array/blob/master/README.md#transpose) - transpose an array of arrays.
* [d3.zip](https://github.com/d3/d3-array/blob/master/README.md#zip) - transpose a variable number of arrays.
#### [Histograms](https://github.com/d3/d3-array/blob/master/README.md#histograms)
### [Histograms](https://github.com/d3/d3-array/blob/master/README.md#histograms)
Bin discrete samples into continuous, non-overlapping intervals.
@ -149,7 +149,7 @@ Select a one- or two-dimensional region using the mouse or touch.
Handy data structures for elements keyed by string.
#### [Objects](https://github.com/d3/d3-collection/blob/master/README.md#objects)
### [Objects](https://github.com/d3/d3-collection/blob/master/README.md#objects)
Methods for converting associative arrays (objects) to arrays.
@ -157,7 +157,7 @@ Methods for converting associative arrays (objects) to arrays.
* [d3.values](https://github.com/d3/d3-collection/blob/master/README.md#values) - list the values of an associated array.
* [d3.entries](https://github.com/d3/d3-collection/blob/master/README.md#entries) - list the key-value entries of an associative array.
#### [Maps](https://github.com/d3/d3-collection/blob/master/README.md#maps)
### [Maps](https://github.com/d3/d3-collection/blob/master/README.md#maps)
Like ES6 Map, but with string keys and a few other differences.
@ -174,7 +174,7 @@ Like ES6 Map, but with string keys and a few other differences.
* [*map*.empty](https://github.com/d3/d3-collection/blob/master/README.md#map_empty) - returns false if the map has at least one entry.
* [*map*.size](https://github.com/d3/d3-collection/blob/master/README.md#map_size) - compute the number of entries.
#### [Sets](https://github.com/d3/d3-collection/blob/master/README.md#sets)
### [Sets](https://github.com/d3/d3-collection/blob/master/README.md#sets)
Like ES6 Set, but with string keys and a few other differences.
@ -188,7 +188,7 @@ Like ES6 Set, but with string keys and a few other differences.
* [*set*.empty](https://github.com/d3/d3-collection/blob/master/README.md#set_empty) - returns true if the set has at least one value.
* [*set*.size](https://github.com/d3/d3-collection/blob/master/README.md#set_size) - compute the number of values.
#### [Nests](https://github.com/d3/d3-collection/blob/master/README.md#nests)
### [Nests](https://github.com/d3/d3-collection/blob/master/README.md#nests)
Group data into arbitrary hierarchies.
@ -465,7 +465,7 @@ Geographic projections, shapes and math.
* [*stream*.polygonEnd](https://github.com/d3/d3-geo/blob/master/README.md#stream_polygonEnd) -
* [*stream*.sphere](https://github.com/d3/d3-geo/blob/master/README.md#stream_sphere) -
#### [Transforms](https://github.com/d3/d3-geo/blob/master/README.md#transforms)
### [Transforms](https://github.com/d3/d3-geo/blob/master/README.md#transforms)
* [d3.geoIdentity](https://github.com/d3/d3-geo/blob/master/README.md#geoIdentity) - scale, translate or clip planar geometry.
* [d3.geoTransform](https://github.com/d3/d3-geo/blob/master/README.md#geoTransform) - define a custom geometry transform.