11 lines
278 B
C#
11 lines
278 B
C#
using Wino.Domain.Interfaces;
|
|
using Wino.Services.Extensions;
|
|
|
|
namespace Wino.Services.Services
|
|
{
|
|
public class HtmlPreviewer : IHtmlPreviewer
|
|
{
|
|
public string GetHtmlPreview(string htmlContent) => HtmlAgilityPackExtensions.GetPreviewText(htmlContent);
|
|
}
|
|
}
|