This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 062c6de89 [DOCS] Enable markdownlint rule `MD051` (#1339)
062c6de89 is described below
commit 062c6de89da3fee51e4a58a1c59945bd75ed3c10
Author: John Bampton <[email protected]>
AuthorDate: Mon Apr 15 14:16:37 2024 +1000
[DOCS] Enable markdownlint rule `MD051` (#1339)
---
.github/linters/.markdown-lint.yml | 3 ---
docs/api/flink/Constructor.md | 4 ++--
docs/api/flink/Function.md | 2 +-
docs/api/sql/Constructor.md | 2 +-
docs/api/sql/Function.md | 4 ++--
docs/tutorial/rdd.md | 4 ++--
6 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/.github/linters/.markdown-lint.yml
b/.github/linters/.markdown-lint.yml
index a6f2f5463..dd3e24ae1 100644
--- a/.github/linters/.markdown-lint.yml
+++ b/.github/linters/.markdown-lint.yml
@@ -50,6 +50,3 @@ MD045: false
# code-block-style - Code block style
MD046: false
-
-# link-fragments - Link fragments should be valid
-MD051: false
diff --git a/docs/api/flink/Constructor.md b/docs/api/flink/Constructor.md
index fe2137fbd..428ad5957 100644
--- a/docs/api/flink/Constructor.md
+++ b/docs/api/flink/Constructor.md
@@ -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)`
@@ -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)`
diff --git a/docs/api/flink/Function.md b/docs/api/flink/Function.md
index 5117670b9..2eae89966 100644
--- a/docs/api/flink/Function.md
+++ b/docs/api/flink/Function.md
@@ -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)`
diff --git a/docs/api/sql/Constructor.md b/docs/api/sql/Constructor.md
index df4686669..a8ffb08c9 100644
--- a/docs/api/sql/Constructor.md
+++ b/docs/api/sql/Constructor.md
@@ -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:
diff --git a/docs/api/sql/Function.md b/docs/api/sql/Function.md
index 2c208faaa..6bcd15f0a 100644
--- a/docs/api/sql/Function.md
+++ b/docs/api/sql/Function.md
@@ -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)`
@@ -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)`
diff --git a/docs/tutorial/rdd.md b/docs/tutorial/rdd.md
index bf404aff9..037245332 100644
--- a/docs/tutorial/rdd.md
+++ b/docs/tutorial/rdd.md
@@ -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: