Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Enable markdownlint rule MD051 #1339

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,3 @@ MD045: false

# code-block-style - Code block style
MD046: false

# link-fragments - Link fragments should be valid
MD051: false
4 changes: 2 additions & 2 deletions docs/api/flink/Constructor.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ LINESTRING (-71.1663 42.2614, -71.1667 42.2616)

## ST_GeomFromText

Introduction: Construct a Geometry from WKT. Alias of [ST_GeomFromWKT](#ST_GeomFromWKT)
Introduction: Construct a Geometry from WKT. Alias of [ST_GeomFromWKT](#st_geomfromwkt)

Format:
`ST_GeomFromText (Wkt: String)`
Expand Down Expand Up @@ -277,7 +277,7 @@ LINESTRING (1 2, 3 4)

## ST_LineStringFromText

Introduction: Construct a LineString from Text, delimited by Delimiter (Optional). Alias of [ST_LineFromText](#ST_LineFromText)
Introduction: Construct a LineString from Text, delimited by Delimiter (Optional). Alias of [ST_LineFromText](#st_linefromtext)

Format: `ST_LineStringFromText (Text: String, Delimiter: Char)`

Expand Down
2 changes: 1 addition & 1 deletion docs/api/flink/Function.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ Introduction: Return the Extended Well-Known Text representation of a geometry.
EWKT is an extended version of WKT which includes the SRID of the geometry.
The format originated in PostGIS but is supported by many GIS tools.
If the geometry is lacking SRID a WKT format is produced.
[See ST_SetSRID](#ST_SetSRID)
[See ST_SetSRID](#st_setsrid)
It will support M coordinate if present since v1.5.0.

Format: `ST_AsEWKT (A: Geometry)`
Expand Down
2 changes: 1 addition & 1 deletion docs/api/sql/Constructor.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ LINESTRING (-71.1663 42.2614, -71.1667 42.2616)

## ST_GeomFromText

Introduction: Construct a Geometry from WKT. If SRID is not set, it defaults to 0 (unknown). Alias of [ST_GeomFromWKT](#ST_GeomFromWKT)
Introduction: Construct a Geometry from WKT. If SRID is not set, it defaults to 0 (unknown). Alias of [ST_GeomFromWKT](#st_geomfromwkt)

Format:

Expand Down
4 changes: 2 additions & 2 deletions docs/api/sql/Function.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Introduction: Return the Extended Well-Known Binary representation of a geometry
EWKB is an extended version of WKB which includes the SRID of the geometry.
The format originated in PostGIS but is supported by many GIS tools.
If the geometry is lacking SRID a WKB format is produced.
[See ST_SetSRID](#ST_SetSRID)
[See ST_SetSRID](#st_setsrid)
It will ignore the M coordinate if present.

Format: `ST_AsEWKB (A: Geometry)`
Expand All @@ -299,7 +299,7 @@ Introduction: Return the Extended Well-Known Text representation of a geometry.
EWKT is an extended version of WKT which includes the SRID of the geometry.
The format originated in PostGIS but is supported by many GIS tools.
If the geometry is lacking SRID a WKT format is produced.
[See ST_SetSRID](#ST_SetSRID)
[See ST_SetSRID](#st_setsrid)
It will support M coordinate if present since v1.5.0.

Format: `ST_AsEWKT (A: Geometry)`
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/rdd.md
Original file line number Diff line number Diff line change
Expand Up @@ -937,9 +937,9 @@ Distance join can only accept `COVERED_BY` and `INTERSECTS` as spatial predicate

The details of spatial partitioning in join query is [here](#use-spatial-partitioning).

The details of using spatial indexes in join query is [here](#use-spatial-indexes_2).
The details of using spatial indexes in join query is [here](#use-spatial-indexes-2).

The output format of the distance join query is [here](#output-format_2).
The output format of the distance join query is [here](#output-format-2).

!!!note
Distance join query is equal to the following query in Spatial SQL:
Expand Down
Loading