Skip to content

Commit 2868fd7

Browse files
committed
DOC-3147: Fix typo for missing l in html.
1 parent ccff857 commit 2868fd7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/ROOT/partials/misc/url-handling.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ tinymce.init({
2727
});
2828
2929
// The editor's documentBaseURI can be used to manipulate URLs:
30-
editor.documentBaseURI.toRelative('http://www.example.com/path1/path2/file.htm'); // Returns: path2/file.htm
30+
editor.documentBaseURI.toRelative('http://www.example.com/path1/path2/file.html'); // Returns: path2/file.html
3131
----
3232

33-
Example: `+http://www.example.com/path1/path2/file.htm+` >> `+path2/file.htm+`
33+
Example: `+http://www.example.com/path1/path2/file.html+` >> `+path2/file.html+`
3434

3535
===== Example: relative URLs on links and images
3636

@@ -53,10 +53,10 @@ tinymce.init({
5353
});
5454
5555
// The editor's documentBaseURI can be used to manipulate URLs:
56-
editor.documentBaseURI.toAbsolute('path2/file.htm'); // Returns: /path1/path2/file.htm
56+
editor.documentBaseURI.toAbsolute('path2/file.html'); // Returns: /path1/path2/file.html
5757
----
5858

59-
Example: `+path2/file.htm+` >> `+/path1/path2/file.htm+`
59+
Example: `+path2/file.html+` >> `+/path1/path2/file.html+`
6060

6161
===== Example: absolute URLs on links and images
6262

@@ -79,4 +79,4 @@ tinymce.init({
7979
});
8080
----
8181

82-
Example: `+path2/file.htm+` >> `+http://www.example.com/path1/path2/file.htm+`
82+
Example: `+path2/file.html+` >> `+http://www.example.com/path1/path2/file.html+`

0 commit comments

Comments
 (0)