@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix xsd: . @prefix dct: . @prefix skos: . @prefix ci: . @prefix tfo: . @prefix xf: . xf:prefix a tfo:Parameter ; skos:prefLabel "Prefix"@en ; rdfs:comment "A compact prefix declaration of the form prefix:url"@en ; dct:identifier "prefix"^^xsd:token ; rdfs:range xsd:token . xf:xpath a tfo:Parameter ; skos:prefLabel "XPath"@en ; rdfs:comment "An XPath expression"@en ; dct:identifier "xpath"^^xsd:token ; owl:cardinality 1 ; rdfs:range xsd:string . xf:reindent a tfo:Parameter ; skos:prefLabel "Reindent"@en ; rdfs:comment "Reindent the XML tree"@en ; dct:identifier "reindent"^^xsd:token ; tfo:default true ; owl:cardinality 1 ; rdfs:range xsd:boolean . xf:subtree a tfo:Transform ; skos:prefLabel "Subtree"@en ; rdfs:comment "Isolate an X(HT)ML node using XPath."@en ; tfo:implementation ; tfo:accepts "application/xml"^^tfo:content-type ; tfo:returns "application/xml"^^tfo:content-type ; tfo:parameter xf:xpath, xf:prefix, xf:reindent ; tfo:parameter-list ( xf:xpath xf:prefix xf:reindent ) . xf:cleanup a tfo:Transform ; skos:prefLabel "Cleanup"@en ; rdfs:comment "Apply cleanup.xsl to the input."@en ; tfo:implementation ; tfo:accepts "application/xml"^^tfo:content-type ; tfo:returns "application/xml"^^tfo:content-type . a tfo:Partial ; tfo:transform xf:subtree ; xf:xpath "//html:main[1]"^^xsd:string ; xf:prefix "html:http://www.w3.org/1999/xhtml"^^xsd:token . a tfo:Application ; tfo:input ; tfo:output ; tfo:transform xf:subtree ; xf:xpath "//html:main[1]"^^xsd:string ; xf:prefix "html:http://www.w3.org/1999/xhtml"^^xsd:token .