We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Each tool should have to define a content type it is available for. For instance, print-arena should only be invoked on channels.
for instance:
"name": "Print Are.na", "version": "0.1.0", "description": "Generate a PDF from your channels", "contentTypes": ["channels"]
or something to this effect. Then this can get used here maybe?
config = require 'configuration.json' newTool( 'arena_toolkit_music' , config);
The text was updated successfully, but these errors were encountered:
I propose we use something like the validator config for this config file:
const config = { whitelists: { class: ['Attachement', 'Media'], providerName: ['YouTube', 'Vimeo', 'SoundCloud'], extension: ['mp3', 'flac', 'wav'], state: ['available'], }, match: { hasLargeImage: block => testImageSize(block), }, }
this way the config is extensible with custom match tests
Sorry, something went wrong.
hxrts
No branches or pull requests
Each tool should have to define a content type it is available for. For instance, print-arena should only be invoked on channels.
for instance:
or something to this effect. Then this can get used here maybe?
The text was updated successfully, but these errors were encountered: