From a69e7b6c0e394cab0ad41e85b7551b0362a35877 Mon Sep 17 00:00:00 2001 From: Mazztok45 Date: Fri, 2 Feb 2024 13:38:05 +0100 Subject: [PATCH] Update the description in example.md --- src/xslt/example.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/xslt/example.md b/src/xslt/example.md index 99a848b..611ac70 100644 --- a/src/xslt/example.md +++ b/src/xslt/example.md @@ -1,5 +1,6 @@ -origin xml +This XML code block is an example of file we process. +```xml @@ -14,11 +15,11 @@ origin xml +``` +With the XSLT code block below, we can transform the upper XML block into a new XML file. -XSLT file - - +```xslt @@ -34,4 +35,15 @@ XSLT file +``` +This transformation outputs the result below. +```xml + + Maynard, James + + maynard.james + + +``` +