@@ -13,11 +13,11 @@ contains three distinct part, each wrapped in its own `<script>` tag:
1313 what icon to use. It is within a regular javascript script tag
1414
15152 . the edit template that defines the content of the edit dialog for the node.
16- It is defined in a script of type ` text/x-red ` with ` data-template-name ` set
16+ It is defined in a script of type ` text/html ` with ` data-template-name ` set
1717 to the [ type of the node] ( #node-type ) .
1818
19193 . the help text that gets displayed in the Info sidebar tab. It is defined in a
20- script of type ` text/x-red ` with ` data-help-name ` set to the
20+ script of type ` text/html ` with ` data-help-name ` set to the
2121 [ type of the node] ( #node-type ) .
2222
2323
@@ -80,7 +80,7 @@ editor. It is an object with the following properties:
8080
8181The edit template for a node describes the content of its edit dialog.
8282
83- <script type="text/x-red " data-template-name="node-type">
83+ <script type="text/html " data-template-name="node-type">
8484 <div class="form-row">
8585 <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
8686 <input type="text" id="node-input-name" placeholder="Name">
@@ -115,7 +115,7 @@ The content of the first `<p>` tag is used as the tooltip when hovering over
115115nodes in the palette.
116116
117117~~~~ html
118- <script type =" text/x-red " data-help-name =" node-type" >
118+ <script type =" text/html " data-help-name =" node-type" >
119119 <p >Some useful help text to introduce the node.</p >
120120 <h3 >Outputs</h3 >
121121 <dl class =" message-properties" >
0 commit comments