CssQuotesProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/CSS/quotes
Gets the enumeration with pairs of values for open-quote and
close-quote. The first pair represents the outer level of quotation,
the second pair is for the first nested level, next pair for third
level and so on.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssQuotesProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.EvenStringsConverter.OrNone().OrDefault(new string[2] {
"«",
"»"
});
internal override IValueConverter Converter => StyleConverter;
internal CssQuotesProperty()
: base(PropertyNames.Quotes, PropertyFlags.Inherited)
{
}
}
}