-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtmlHelper.cs
More file actions
33 lines (26 loc) · 905 Bytes
/
HtmlHelper.cs
File metadata and controls
33 lines (26 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;
namespace HtmlSerializer
{
public sealed class HtmlHelper
{
private static readonly HtmlHelper _instance = new HtmlHelper();
public string[] AllTags { get; private set; }
public string[] SelfClosingTags { get; private set; }
private HtmlHelper()
{
AllTags = JsonSerializer.Deserialize<string[]>(File.ReadAllText("HtmlTags.json"));
SelfClosingTags = JsonSerializer.Deserialize<string[]>(File.ReadAllText("HtmlVoidTags.json"));
}
public static HtmlHelper Instance => _instance;
public bool IsSelfClosing(string tagName)
{
return SelfClosingTags != null && Array.Exists(SelfClosingTags, t => t == tagName);
}
}
}