The only option now is: [=tc.comment]
The two ideas I have:
- Ability to specify a line number (or range) to Display : Else Display Default Range if doesn't exist:
Example (possible) syntax: [=tc.comment.line.[ #Start [-#End ] [: #Start [-#End ]] ]- [=tc.comment.line.2-3:1-2] :: Display lines 2-3 (if they exist), else 1-2.
- [=tc.comment.line.2-2:1] ::::: Display lines 2-2 (if it exists), else 1+.
- [=tc.comment.line.3:1] :::::::: Display lines 3+ (if it exists), else 1+.
- [=tc.comment.line.4] ::::::::::: Display lines 4+
- Search for a string to start from : Else Default Range if String doesn't exist.
Example (possible) syntax: [=tc.comment.find.[ "STRING" [ .#AdditionalLines ][: #Start [-#End ]] ]- [=tc.comment.find."FooBar".1] ::::: Start Display on the line that contains Foobar & Only Display that 1 line.
- [=tc.comment.find."FooBar".0] ::::: Start Display on the line that contains Foobar & Display all lines after.
- [=tc.comment.find."FooBar".0:1] :: Start Display on the line that contains Foobar & Display all lines after, else Line 1+
- [=tc.comment.find."FooBar".0:2-3] :: Start Display on the line that contains Foobar & Only that line, else Lines 2-3.
[=tc.comment.find."FooBar".0:2-3:1] :: Start Display on the line that contains Foobar & Only that line, else Lines 2-3, else line 1+.