I want to check the HTML tags the user is using in a rich html editor I have. I am not sure though how to do this in C#.
Should I be using Regex and what HTML tags should I be blacking listing/white listing?
|
|
|||||
|
|
|
A simple whitelisting approach:
Output:
Rendered output:
|
||
|
|
|
|
You might try the Html Agility Pack. I haven't tried it to skip tags, but it could certainly find tags. |
||
|
|
|
|
Assuming the tags are entered as single string like here on StackOverflow, you'll want to split the string into individual tags first:
A white-/blacklist can be represented using a
Then you'd have to check if one of the
|
||||||||
|