fix newlines in description

This commit is contained in:
Ted Kruijff 2024-02-22 15:21:53 +01:00
parent faa2ab2922
commit bfe526be3f
No known key found for this signature in database
GPG key ID: 638CAF1E28637972

View file

@ -22,7 +22,7 @@ class ParseEthernetFrame extends Operation {
this.name = "Parse Ethernet frame"; this.name = "Parse Ethernet frame";
this.module = "Default"; this.module = "Default";
this.description = "Parses an Ethernet frame and either shows the deduced values (Source and destination MAC, VLANs) or returns the packet data.\\n\\nGood for use in conjunction with the Parse IPv4, and Parse TCP/UDP recipes."; this.description = "Parses an Ethernet frame and either shows the deduced values (Source and destination MAC, VLANs) or returns the packet data.<br /><br />Good for use in conjunction with the Parse IPv4, and Parse TCP/UDP recipes.";
this.infoURL = "https://en.wikipedia.org/wiki/Ethernet_frame#Frame_%E2%80%93_data_link_layer"; this.infoURL = "https://en.wikipedia.org/wiki/Ethernet_frame#Frame_%E2%80%93_data_link_layer";
this.inputType = "string"; this.inputType = "string";
this.outputType = "html"; this.outputType = "html";