@@ -722,7 +722,7 @@ URLs of ``<a>`` elements:
722
722
# ...
723
723
724
724
# if `true`, all URLs using the `http://` scheme will be converted to
725
- # using the `https://` scheme instead. `http` still needs to be allowed
725
+ # use the `https://` scheme instead. `http` still needs to be allowed
726
726
# in `allowed_link_schemes`
727
727
force_https_urls : true
728
728
@@ -750,7 +750,7 @@ URLs of ``<a>`` elements:
750
750
751
751
<framework : config >
752
752
<!-- force-https-urls: if `true`, all URLs using the `http://` scheme will be
753
- converted to using the `https://` scheme instead.
753
+ converted to use the `https://` scheme instead.
754
754
`http` still needs to be allowed in `allowed-link-scheme` -->
755
755
<!-- allow-relative-links: whether to allow relative links (i.e. URLs without
756
756
scheme and host) -->
@@ -780,7 +780,7 @@ URLs of ``<a>`` elements:
780
780
$framework->htmlSanitizer()
781
781
->sanitizer('app.post_sanitizer')
782
782
// if `true`, all URLs using the `http://` scheme will be converted to
783
- // using the `https://` scheme instead. `http` still needs to be
783
+ // use the `https://` scheme instead. `http` still needs to be
784
784
// allowed in `allowedLinkSchemes`
785
785
->forceHttpsUrls(true)
786
786
@@ -805,7 +805,7 @@ URLs of ``<a>`` elements:
805
805
$postSanitizer = new HtmlSanitizer(
806
806
(new HtmlSanitizerConfig())
807
807
// if `true`, all URLs using the `http://` scheme will be converted to
808
- // using the `https://` scheme instead. `http` still needs to be
808
+ // use the `https://` scheme instead. `http` still needs to be
809
809
// allowed in `allowedLinkSchemes`
810
810
->forceHttpsUrls()
811
811
@@ -840,7 +840,7 @@ the HTML sanitizer: ``src``, ``href``, ``lowsrc``, ``background`` and ``ping``.
840
840
# ...
841
841
842
842
# if `true`, all URLs using the `http://` scheme will be converted to
843
- # using the `https://` scheme instead. `http` still needs to be allowed
843
+ # use the `https://` scheme instead. `http` still needs to be allowed
844
844
# in `allowed_media_schemes`
845
845
force_https_urls : true
846
846
@@ -868,7 +868,7 @@ the HTML sanitizer: ``src``, ``href``, ``lowsrc``, ``background`` and ``ping``.
868
868
869
869
<framework : config >
870
870
<!-- force-https-urls: if `true`, all URLs using the `http://` scheme will be
871
- converted to using the `https://` scheme instead. `http`
871
+ converted to use the `https://` scheme instead. `http`
872
872
still needs to be allowed in `allowed-media-scheme` -->
873
873
<!-- allow-relative-medias: whether to allow relative URLs (i.e. URLs without
874
874
scheme and host) -->
@@ -898,7 +898,7 @@ the HTML sanitizer: ``src``, ``href``, ``lowsrc``, ``background`` and ``ping``.
898
898
$framework->htmlSanitizer()
899
899
->sanitizer('app.post_sanitizer')
900
900
// if `true`, all URLs using the `http://` scheme will be converted to
901
- // using the `https://` scheme instead. `http` still needs to be
901
+ // use the `https://` scheme instead. `http` still needs to be
902
902
// allowed in `allowedMediaSchemes`
903
903
->forceHttpsUrls(true)
904
904
@@ -923,7 +923,7 @@ the HTML sanitizer: ``src``, ``href``, ``lowsrc``, ``background`` and ``ping``.
923
923
$postSanitizer = new HtmlSanitizer(
924
924
(new HtmlSanitizerConfig())
925
925
// if `true`, all URLs using the `http://` scheme will be converted to
926
- // using the `https://` scheme instead. `http` still needs to be
926
+ // use the `https://` scheme instead. `http` still needs to be
927
927
// allowed in `allowedMediaSchemes`
928
928
->forceHttpsUrls()
929
929
0 commit comments