/// <summary>
        /// Gets the replaced HTML.
        /// </summary>
        /// <param name="stringBuilder">The string builder.</param>
        /// <param name="model">The model.</param>
        /// <returns>HTML with replaced model values</returns>
        public override System.Text.StringBuilder GetReplacedHtml(System.Text.StringBuilder stringBuilder, Root.ViewModels.Cms.RenderPageViewModel model)
        {
            var author = model.GetBlogPostAuthorModel();
            stringBuilder = GetReplacedHtml(stringBuilder, author != null ? author.Name : null);

            return stringBuilder;
        }