-
-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to set "standalone" boolean attributes #516
Comments
It is possible to set a value-less attribute, however it is a bit awkward and unintuitive as HtmlAgilityPack is not providing a simple convenient API for that. Basically, currently you gotta do something like this: static HtmlAttribute SetNoValueAttribute(HtmlNode element, string attributeName)
{
var attr = element.Attributes[attributeName]
?? element.Attributes.Append(attributeName);
attr.Value = null;
attr.QuoteType = AttributeValueQuote.WithoutValue;
return attr;
}
SetNoValueAttribute(iframeNode, "allowfullscreen"); |
Thanks for your response and code example. @JonathanMagnan Even if it is possible to create such value-less attributes, can we discuss about my suggestion to allow attributes to have a boolean value? |
Hello @jekru , What exactly are you expecting from your proposed method
One solution, meanwhile, is surely creating an extension method on your side using @elgonzo . From what I understand, you would like it to do this answer Best Regards, Jon |
I would expect that The only problem I see is that there is no way to identify value-less attributes. Here is an example where I would expect using System;
using System.Linq;
using HtmlAgilityPack;
public class Program
{
public static void Main()
{
var input = HtmlNode.CreateNode("<input checked></input>");
var checkedAttribute = input.Attributes.First();
// Result is: Value: '' (empty string)
Console.WriteLine($"Value: '{checkedAttribute.Value}'");
// Result is: QuoteType: DoubleQuote
Console.WriteLine($"QuoteType: {checkedAttribute.QuoteType}");
}
} |
Hello @jekru , Something for sure is that by default, we prefer to keep the current empty with the double quote behavior for backward compatibility. Browsers have different behavior on value-less attributes (firefox in developer mode will do the "empty string" like us while Chrome will keep it without value). Which browser is right? I'm not sure of the answer but keeping being backward compatible in this case is probably the best. |
You made a good point with backward compatibility and I also was not aware that the behavior differs from browser to browser. What about creating a function |
1. Description
I am unable to set "standalone" boolean attributes. Getting the value of these attributes results in an empty string. Also setting such attributes is only possible by using a string. While this is not false because only the presence of the attribute matters, I find it a bit odd to use empty strings to set such attributes. For example
checked
will be true for<input type="checkbox" checked />
and<input type="checkbox" checked="" />
and even for<input type="checkbox" checked="false" />
because only the presence of the attribute matters.See also: Boolean attribute (HTML).
2. Exception
There is no exception.
3. Fiddle or Project
https://dotnetfiddle.net/r7jvX7
4. Any further technical details
Creating
Attributes.Add(string name, bool value)
andSetAttributeValue(string name, bool value)
could help differentiate between standalone boolean attributes and attributes with a boolean string to allow creating standalone boolean attributes.The text was updated successfully, but these errors were encountered: