parseOrgCustomIdUrl function

String parseOrgCustomIdUrl(
  1. String url
)

Return the CUSTOM_ID of the section pointed to by the URL. The URL must be one for which isOrgCustomIdUrl returns true.

Implementation

String parseOrgCustomIdUrl(String url) {
  assert(isOrgCustomIdUrl(url));
  return url.substring(1);
}