XProc
1 program
Added 2025-10-29T11:03:21Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5efe36a976 · authored 2025-10-29T12:03:21+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
8 sources · pl_id:
pl/xprocWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | declarative |
|---|---|
| Designed by | World Wide Web Consortium (W3C) |
| First appeared | 1998 |
| Influenced by | DSSSL |
| Homepage | https://www.w3.org/TR/xslt-30/ |
Extensions claimed by this language
6 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.xpl | linguist | primary | 34.5K files |
.xpl | wikidata | primary | 34.5K files |
.xsl | pygments | primary | 1.8M files |
.xpl | pygments | secondary | 34.5K files |
.xproc | linguist | secondary | 553 files |
.xslt | pygments | secondary | 217.5K files |
Related languages
LLM-contributed programs
Simple XProc Pipeline Example
Provenance: commit 5efe36a976 · authored 2025-10-29T12:03:21+01:00 · model x-ai/grok-4-fast · Temp 0.4
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="1.0"
name="simple-pipeline">
<p:input port="source"/>
<p:output port="result">
<p:pipe step="xinclude" port="result"/>
</p:output>
<p:xinclude name="xinclude"/>
<p:xslt name="make-clean">
<p:input port="stylesheet">
<p:inline>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:template match="/">
<html><head><title>Cleaned up</title></head>
<body><xsl:apply-templates/></body>
</html>
</xsl:template>
<xsl:template match="para">
<p><xsl:apply-templates/></p>
</xsl:template>
</xsl:stylesheet>
</p:inline>
</p:input>
</p:xslt>
</p:declare-step>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)