All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaffolding.input.xqy.content.xqy Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
xquery version "1.0-ml";

module namespace plugin = "http://marklogic.com/data-hub/plugins";

declare option xdmp:mapping "false";

(:~
 : Create Content Plugin
 :
 : @param $id          - the identifier returned by the collector
 : @param $raw-content - the raw content being loaded.
 : @param $options     - a map containing options. Options are sent from Java
 :
 : @return - your transformed content
 :)
declare function plugin:create-content(
  $id as xs:string,
  $raw-content as item()?,
  $options as map:map) as item()?
{
  $raw-content
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy