A simple container to store the line, column and html tag value to insert in the source file for comments, string literals, template literals and regexp literals
The constructor
Name | Type | Description |
---|---|---|
line | Number | The line number in the source file where the tag must be inserted |
column | null or Number | The column number in the source file where the tag must be inserted |
tag | String | The tag to insert. |
The column number in the source file where the tag must be inserted If the tag must be inserted at the end of the line the value is null
The line number in the source file where the tag must be inserted
The tag to insert. To avoid a replacement of the < ,> and " chars when creating the source html file the < char is replaced with §lt§, the > char with §gt§ and the " char with §quot§ and then replaced with the correct value inthe source html file.
The column number in the source file where the tag must be inserted
The line number in the source file where the tag must be inserted