<?xml version=“1.0” encoding=“UTF-8”?> <xsl:stylesheet version=“1.0” xmlns:xsl=“www.w3.org/1999/XSL/Transform” xmlns:xs=“www.w3.org/2001/XMLSchema” xmlns:fn=“www.w3.org/2005/xpath-functions” xmlns:registrofiscal=“www.sat.gob.mx/registrofiscal”>

<xsl:output method="text" version="1.0" encoding="UTF-8" indent="no"/>

<!-- Manejador de nodos tipo nomina -->
<xsl:template match="registrofiscal:CFDIRegistroFiscal">

  <!--Iniciamos el tratamiento de los atributos de RegistroFiscal -->
  <xsl:call-template name="Requerido">
    <xsl:with-param name="valor" select="./@Version"/>
  </xsl:call-template>

  <xsl:call-template name="Requerido">
    <xsl:with-param name="valor" select="./@Folio"/>
  </xsl:call-template>

</xsl:template>

</xsl:stylesheet>