for package:hakyll

An extension of pandocCompilerWith which allows you to specify a custom pandoc transformation for the content
Similar to pandocCompilerWithTransform, but the transformation function is monadic. This is useful when you want the pandoc transformation to use the Compiler information such as routes, metadata, etc
Like pandocCompilerWithTransformM, but work on an Item Pandoc instead of just a Pandoc. This allows for more seamless composition of functions that require the extra information that an Item provides, like bibliographic transformations with processPandocBiblio.
Like renderPandocWithTransformM, but work on an Item Pandoc instead of just a Pandoc. This allows for more seamless composition of functions that require the extra information that an Item provides, like bibliographic transformations with processPandocBiblio.
An extension of renderPandocWith, which allows you to specify a custom Pandoc transformation on the input Item. Useful if you want to do your own transformations before running custom Pandoc transformations, e.g. using a funcField to transform raw content.
Similar to renderPandocWithTransform, but the Pandoc transformation is monadic. This is useful when you want the pandoc transformation to use the Compiler information such as routes, metadata, etc. along with your own transformations beforehand.