private void WriteBlankLineIfEndPoint(int pointer)
        {
            if (!Data.IsLocationAnEndPoint(pointer))
            {
                return;
            }

            LogCreator.WriteEmptyLine();
        }
        private void WriteBlankLineIfStartingNewParagraph(int pointer)
        {
            if (!Data.IsLocationAReadPoint(pointer) && !AreAnyLabelsPresentAt(pointer))
            {
                return;
            }

            LogCreator.WriteEmptyLine();
        }