protected static final String[] splitKeywords = { "#:HEADER", "Ⓗ", "#:SPLIT", "━━", "▂▂", "▃▃"};
public static boolean isTSPSourceStart(Reader reader) throws IOException {
String sourceIntro = new String(StreamUtil.readCharAmountFromReader(reader, 10));
SimpleParser parser = new SimpleParser(sourceIntro);
return parser.tryConsume(splitKeywords) > 0;
}
public void splitSourceCases(String defaultMarker, String fileSource) throws TemplatedSourceException {
SimpleParser parser = new SimpleParser(fileSource);