Projekt

Obecné

Profil

Stáhnout (753 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 2c9afc72 Vojtěch Bartička
using Core.Entities;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7
using static Core.Services.HTMLService;
8
9
namespace Core.Services
10
{
11
    public interface IHTMLService
12
    {
13
        public (string, CachedInfo) FullPreprocessHTML(string htmlSource, List<AnnotationTagGeneric> tags);
14 f260dac8 Vojtěch Bartička
        public (string, CachedInfo) PartialPreprocessHTMLAddTag(string htmlToEdit, string htmlOriginal, AnnotationTagGeneric tagToAdd, List<AnnotationTagGeneric> tags, CachedInfo cachedInfo);
15
        public (string, CachedInfo) PartialPreprocessHTMLRemoveTag(string htmlToEdit, string htmlOriginal, AnnotationTagGeneric tagToRemove, List<AnnotationTagGeneric> tags, CachedInfo cachedInfo);
16 2c9afc72 Vojtěch Bartička
    }
17
}