This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
TP-BDD2/xquery/ex1.xq
2022-03-29 17:16:02 +02:00

13 lines
218 B
Plaintext

<recette>
<title>
{//titre/text()}
</title>
<ingredient>
{//liste/child::node()}
</ingredient>
<procedure>
{ for $txt in //texte
return <p>{$txt/text()}</p>
}
</procedure>
</recette>