Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit bd08143

Browse files
Extract also property attributes of HTML meta elements, this fixes iipc#67
1 parent dfe1f62 commit bd08143

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/archive/resource/html/ExtractingParseObserver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ public void extract(HTMLMetaData data, TagNode node, ExtractingParseObserver obs
406406

407407
private static class MetaTagExtractor implements TagExtractor {
408408
public void extract(HTMLMetaData data, TagNode node, ExtractingParseObserver obs) {
409-
ArrayList<String> l = getAttrList(node,"name","rel","content","http-equiv");
409+
ArrayList<String> l = getAttrList(node,"name","rel","content","http-equiv","property");
410410
if(l != null) {
411411
data.addMeta(l);
412412
}

0 commit comments

Comments
 (0)