forked from lethain/aym-cms
-
Notifications
You must be signed in to change notification settings - Fork 81
Content Processors
montecristo edited this page Sep 13, 2010
·
1 revision
Subdirectories of the CONTENT_DIR
handed to the Pass-through Processor will be skipped by the templating engine and copied to the DEPLOY_DIR
intact. This is convenient, if the subdirectories contain file types that cannot be handled by the templating engine; Sphinx-generated documentation suites are one example.
Assume one has a CONTENT_DIR
/prerendered/ subdirectory, which should not be processed.
CONTENT_PROCESSORS = {
'prerendered/': {
'*.*' :
('hydeengine.content_processors.PassthroughProcessor',)
}
}