Skip to content

Commit 1ce8900

Browse files
authored
Fix broken anchor in OGC API Processes Core doc links (#799)
The OGC_API_PROCESSES_CORE_DOC_URI base had a stray slash after the hash (#/req_core_), producing anchor links like ...18-062r3.html#/req_core_process-execute-sync-many-json that do not resolve. All sibling rulesets use #req_..._ with no slash; this aligns processes-core with them. Fixes #783
1 parent 509d3d6 commit 1ce8900

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/specs/ogc-api/rulesets/processes-core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { truthy } from '@geonovum/standards-checker/spectral/functions';
66

77
export const OGC_API_PROCESSES_CORE_URI = 'http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/core';
88

9-
export const OGC_API_PROCESSES_CORE_DOC_URI = 'https://docs.ogc.org/DRAFTS/18-062r3.html#/req_core_';
9+
export const OGC_API_PROCESSES_CORE_DOC_URI = 'https://docs.ogc.org/DRAFTS/18-062r3.html#req_core_';
1010

1111
export const SCHEMAS_URI_PREFIX = 'https://raw.githubusercontent.com/opengeospatial/ogcapi-processes/master/openapi/schemas/';
1212

0 commit comments

Comments
 (0)