private bool IsCompleteHtml(String templateContent)
        {
            if (!String.IsNullOrEmpty(templateContent))
            {
                return(SimpleParser.IsWellFormed(templateContent));
            }

            // if template is empty, it's always editable.
            return(true);
        }