I have reproduce the behaviour and it seems to be an issue with the
Telescoping Sort plugin and
Channel Skip.
From what I have seen, every time the plugin tries to pad with empty record, it doesn't add a CRLF after the code use for pagination (in my test, I used
1). Therefore, instead of having something like this:
1 Page 1 of 6
+
- Some text
1
1 Page 2 of 6
+
- Some text
you get:
1 Page 1 of 6
+
- Some text
11 Page 2 of 6
+
- Some text
Unfortunately, the
Telescoping Sort plugin isn't supported. Most plugin found there are third party plugins which were added only so other users can, well...use them! They were not tested intensively by our Q&A department.
Now that being said, I know the author and will inform him of this behaviour but cannot say if this will be fixed or not.
In the mean time, you could write a script that looks at the first character of each line and if it is your
Channel Skip skip page character then you can check if the following characters are a repetition of it. If so, then you could simply add a CRLF after each. Downside is if that character is also found as a repetition but is part of your actual data like this:
19 of 15
+
-Some text
-
110 of 15
+
-Some text
-
111 of 8
+
-Some text
-
112 of 8
....
You would end up with undesired empty record, as an example.
Hope that clarifies thing.