-
Hello again. I intend to declare different metadata.field strings to delete for each category, and I'd like to ask if something like the following would work where "pixiv" inherits the general options like in CSS: "postprocessor": {
"manifest": {
"#": "<general metadata pp options>",
"name": "metadata"
"pixiv": {
"#": "<pixiv-specific metadata pp options>"
}
}
} Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Dec 1, 2024
Replies: 1 comment 1 reply
-
v1.28.0 added the ability to inherit options from global {
"extractor": {
"pixiv": {
"postprocessors": {
"type": "manifest",
"#": "<pixiv-specific metadata pp options>"
}
}
},
"postprocessor": {
"manifest": {
"#": "<general metadata pp options>",
"name": "metadata"
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nucspl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
v1.28.0 added the ability to inherit options from global
postprocessor
settings (55afd71), which would be quite useful here: