private async Task <string> GetSnippetText()
        {
            // Read the plain-text version of the snippet
            if (string.IsNullOrEmpty(_snippetText))
            {
                _snippetText = await _repository.GetSnippetTextAsync(_snippet.SnippetFile);
            }

            return(_snippetText);
        }