Skip to content

Commit 28a31e2

Browse files
dmihayloDesislava Mihaylova
authored andcommitted
docs: replace slugs with URLs
1 parent 39df94d commit 28a31e2

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

docs/date-formatting/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,5 +341,5 @@ The following example demonstrates how to implement the usage of abbreviated nam
341341

342342
## Suggested Links
343343

344-
* [Date Formatting API]({% slug dateformatapi_internalization %})
345-
* [Date Parsing]({% slug dateparsing_internalization %})
344+
* [Date Formatting API](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/api.md)
345+
* [Date Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/date-parsing/index.md)

docs/date-parsing/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In this case, the `parseDate` method tries to parse the string using both the lo
4444

4545
### Explicit Formats
4646

47-
You can pass the formats that have to be used to parse the value as parameters to the method. In this case, only if it matches one of the specified formats, is the value parsed. The supported formats are the same as the ones described in the article on [date formatting]({% slug dateformatting_internalization %}).
47+
You can pass the formats that have to be used to parse the value as parameters to the method. In this case, only if it matches one of the specified formats, is the value parsed. The supported formats are the same as the ones described in the article on [date formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md).
4848

4949
The following example demonstrates how to specify the parse formats.
5050

@@ -58,5 +58,5 @@ The following example demonstrates how to specify the parse formats.
5858

5959
## Suggested Links
6060

61-
* [Date Parsing API]({% slug dateparseapi_internalization %})
62-
* [Date Formatting]({% slug dateformatting_internalization %})
61+
* [Date Parsing API](https://github.com/telerik/kendo-intl/blob/develop/docs/date-parsing/api.md)
62+
* [Date Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md)

docs/errors.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ The following table provides the full list of controlled errors that might possi
2323

2424
## Suggested Links
2525

26-
* [Get Started with CLDR]({% slug cldrdata_overview_internalization %})
27-
* [Get Started with Date Parsing]({% slug dateparsing_internalization %})
28-
* [Get Started with Date Formatting]({% slug dateformatting_internalization %})
29-
* [Get Started with Number Parsing]({% slug numberparsing_internalization %})
30-
* [Get Started with Number Formatting]({% slug numbeformatting_internalization %})
31-
* [Get Started with General Formatting]({% slug generalformatting_internalization %})
26+
* [Get Started with CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md)
27+
* [Get Started with Date Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/date-parsing/index.md)
28+
* [Get Started with Date Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md)
29+
* [Get Started with Number Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/num-parsing/index.md)
30+
* [Get Started with Number Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/num-formatting/index.md)
31+
* [Get Started with General Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/general-formatting/index.md)

docs/general-formatting/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ To format both the `Date` and `Number` values by using the locale specific setti
3737

3838
## Suggested Links
3939

40-
* [General Formatting API]({% slug generalformatapi_internalization %})
41-
* [Date Formatting]({% slug dateformatting_internalization %})
42-
* [Number Formatting]({% slug numbeformatting_internalization %})
40+
* [General Formatting API](https://github.com/telerik/kendo-intl/blob/develop/docs/general-formatting/api.md)
41+
* [Date Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md)
42+
* [Number Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/num-formatting/index.md)

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ The package includes:
2121

2222
## Suggested Links
2323

24-
* [Get Started with CLDR]({% slug cldrdata_overview_internalization %})
25-
* [Get Started with Date Parsing]({% slug dateparsing_internalization %})
26-
* [Get Started with Date Formatting]({% slug dateformatting_internalization %})
27-
* [Get Started with Number Parsing]({% slug numberparsing_internalization %})
28-
* [Get Started with Number Formatting]({% slug numbeformatting_internalization %})
29-
* [Get Started with General Formatting]({% slug generalformatting_internalization %})
24+
* [Get Started with CLDR](https://github.com/telerik/kendo-intl/blob/develop/docs/cldr/index.md)
25+
* [Get Started with Date Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/date-parsing/index.md)
26+
* [Get Started with Date Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md)
27+
* [Get Started with Number Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/num-parsing/index.md)
28+
* [Get Started with Number Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/num-formatting/index.md)
29+
* [Get Started with General Formatting](https://github.com/telerik/kendo-intl/blob/develop/docs/general-formatting/index.md)

docs/num-formatting/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Standard number formatting can be specified by passing an options object or a st
8888
style: "percent"
8989
}, "de"); // 123.457 %
9090

91-
For the full list of available options, refer to the API documentation on the [`formatNumber`]({% slug numbersapi_internalization %}#the-formatnumber-method) method.
91+
For the full list of available options, refer to the API documentation on the [`formatNumber`](https://github.com/telerik/kendo-intl/blob/develop/docs/num-formatting/api.md#formatnumber) method.
9292

9393
### Custom
9494

@@ -152,5 +152,5 @@ The supported format specifiers are:
152152

153153
## Suggested Links
154154

155-
* [Number Formatting API]({% slug numberformatatapi_internalization %})
156-
* [Number Parsing]({% slug numberparsing_internalization %})
155+
* [Number Formatting API](https://github.com/telerik/kendo-intl/blob/develop/docs/num-formatting/api.md)
156+
* [Number Parsing](https://github.com/telerik/kendo-intl/blob/develop/docs/num-parsing/index.md)

0 commit comments

Comments
 (0)