Skip to content

Commit d93852c

Browse files
author
Farzad Hayatbakhsh
committed
DOC-1928: Replace "html" with "HTML" in code block comments
1 parent 0c7c2a8 commit d93852c

39 files changed

+52
-52
lines changed

modules/ROOT/partials/configuration/a11ychecker_filter_issue.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The callback function in the following example will return `false` if the issue
2020
[source,js]
2121
----
2222
tinymce.init({
23-
selector: 'textarea', // change this value according to your html
23+
selector: 'textarea', // change this value according to your HTML
2424
plugins: 'a11ychecker',
2525
toolbar: 'a11ycheck',
2626
a11ychecker_filter_issue: (issue) => {
@@ -36,7 +36,7 @@ The callback function in the following example will only return `+false+` if the
3636
[source,js]
3737
----
3838
tinymce.init({
39-
selector: 'textarea', // change this value according to your html
39+
selector: 'textarea', // change this value according to your HTML
4040
plugins: 'a11ychecker',
4141
toolbar: 'a11ycheck',
4242
a11ychecker_filter_issue: (issue) => {
@@ -52,7 +52,7 @@ The callback function in the following example will only return `false` for any
5252
[source,js]
5353
----
5454
tinymce.init({
55-
selector: 'textarea', // change this value according to your html
55+
selector: 'textarea', // change this value according to your HTML
5656
plugins: 'a11ychecker',
5757
toolbar: 'a11ycheck',
5858
a11ychecker_filter_issue: (issue) => {

modules/ROOT/partials/configuration/a11ychecker_issue_url_callback.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This example shows how to change the link for the "Click for more info" button (
1818
[source,js]
1919
----
2020
tinymce.init({
21-
selector: 'textarea', // change this value according to your html
21+
selector: 'textarea', // change this value according to your HTML
2222
plugins: 'a11ychecker',
2323
toolbar: 'a11ycheck',
2424
a11ychecker_issue_url_callback: (ruleId) =>

modules/ROOT/partials/configuration/advanced-typography.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ By setting up the `typography_default_lang`, each time the user opens the {produ
1010
[source,js,subs="attributes+"]
1111
----
1212
tinymce.init({
13-
selector: 'textarea', // change this value according to your html
13+
selector: 'textarea', // change this value according to your HTML
1414
menu: { tools: { title: 'Tools', items: 'code wordcount typography' }},
1515
plugins: 'typography',
1616
toolbar: 'typography',
@@ -36,7 +36,7 @@ If an HTML tag or an HTML tag with a specified attribute is added to the `typogr
3636
[source,js,subs="attributes+"]
3737
----
3838
tinymce.init({
39-
selector: 'textarea', // change this value according to your html
39+
selector: 'textarea', // change this value according to your HTML
4040
plugins: '{plugincode}',
4141
toolbar: 'typography',
4242
typography_default_lang: 'en-US',
@@ -58,7 +58,7 @@ When setting up `typography_langs` in {productname}, `lang` values — such as `
5858
[source,js,subs="attributes+"]
5959
----
6060
tinymce.init({
61-
selector: "textarea", // change this value according to your html
61+
selector: "textarea", // change this value according to your HTML
6262
plugins: "typography",
6363
toolbar: "typography",
6464
typography_default_lang: [ "en-US", "de", "es" ], // Required to set specific typography language rules.
@@ -80,7 +80,7 @@ A user can then select text and select from the available languages. That langua
8080
[source,js,subs="attributes+"]
8181
----
8282
tinymce.init({
83-
selector: 'textarea', // change this value according to your html
83+
selector: 'textarea', // change this value according to your HTML
8484
plugins: '{plugincode}',
8585
toolbar: '{plugincode} language',
8686
typography_default_lang: 'en-US',
@@ -200,7 +200,7 @@ All rules supported by the {pluginname} plugin are documented in the https://git
200200
[source,js,subs="attributes+"]
201201
----
202202
tinymce.init({
203-
selector: 'textarea', // change this value according to your html
203+
selector: 'textarea', // change this value according to your HTML
204204
plugins: '{plugincode}',
205205
toolbar: '{plugincode}',
206206
typography_default_lang: 'en_US', // This is required to configure the default language used by typography.

modules/ROOT/partials/configuration/advlist_bullet_styles.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This option allows you to include specific unordered list item markers in the de
1919
[source,js]
2020
----
2121
tinymce.init({
22-
selector: 'textarea', // change this value according to your html
22+
selector: 'textarea', // change this value according to your HTML
2323
plugins: 'lists advlist',
2424
toolbar: 'bullist',
2525
advlist_bullet_styles: 'square' // only include square bullets in list

modules/ROOT/partials/configuration/advtable_value_series.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The generator callback function should return an object with the following prope
9696
[source,js]
9797
----
9898
tinymce.init({
99-
selector: 'textarea', // change this value according to your html
99+
selector: 'textarea', // change this value according to your HTML
100100
plugins: 'table advtable',
101101
toolbar: 'advtablerownumbering',
102102
advtable_value_series: {
@@ -117,7 +117,7 @@ tinymce.init({
117117
[source,js]
118118
----
119119
tinymce.init({
120-
selector: "textarea", // change this value according to your html
120+
selector: "textarea", // change this value according to your HTML
121121
plugins: 'table advtable',
122122
toolbar: "table advtablerownumbering",
123123
advtable_value_series: {

modules/ROOT/partials/configuration/advtemplate_create_category.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The plugin uses the `advtemplate_create_category` asynchronous function to creat
2424
[source,js]
2525
----
2626
tinymce.init({
27-
selector: 'textarea#advtemplate', // change this value according to your html
27+
selector: 'textarea#advtemplate', // change this value according to your HTML
2828
plugins: ["advtemplate"],
2929
advtemplate_create_category: (title) =>
3030
fetch('/categories', {

modules/ROOT/partials/configuration/advtemplate_create_template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The plugin uses the `advtemplate_create_template` asynchronous function to creat
2626
[source,js]
2727
----
2828
tinymce.init({
29-
selector: 'textarea#advtemplate', // change this value according to your html
29+
selector: 'textarea#advtemplate', // change this value according to your HTML
3030
plugins: ["advtemplate"],
3131
advtemplate_create_template: (title, content, categoryId) =>
3232
fetch('/templates', {

modules/ROOT/partials/configuration/advtemplate_delete_category.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Empty object `{}`
2020
[source,js]
2121
----
2222
tinymce.init({
23-
selector: 'textarea#advtemplate', // change this value according to your html
23+
selector: 'textarea#advtemplate', // change this value according to your HTML
2424
plugins: ["advtemplate"],
2525
advtemplate_delete_category: (id) =>
2626
fetch('/categories/' + id, {

modules/ROOT/partials/configuration/advtemplate_delete_template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Empty object `{}`
2020
[source,js]
2121
----
2222
tinymce.init({
23-
selector: 'textarea#advtemplate', // change this value according to your html
23+
selector: 'textarea#advtemplate', // change this value according to your HTML
2424
plugins: ["advtemplate"],
2525
advtemplate_delete_template: (id) =>
2626
fetch('/templates/' + id, {

modules/ROOT/partials/configuration/advtemplate_get_template.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The plugin uses the `advtemplate_get_template` asynchronous function to get a te
2727
[source,js]
2828
----
2929
tinymce.init({
30-
selector: 'textarea#advtemplate', // change this value according to your html
30+
selector: 'textarea#advtemplate', // change this value according to your HTML
3131
plugins: ["advtemplate"],
3232
advtemplate_get_template: (id) =>
3333
fetch('/templates/' + id, {

0 commit comments

Comments
 (0)