diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-12-29 15:39:14 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-12-30 18:56:34 +0100 |
commit | b1aec63bf053b4a654e3531c32eabd6b0ab035f5 (patch) | |
tree | bc4221c729cf9d2305501973b3869ab48e64b003 /help3xsl | |
parent | 928e87fe68bf8524caf463aff82851c712e6f5f0 (diff) |
tdf#114263 Help page for BASIC WaitUntil statement
Change-Id: I6ef145556a813f65ea509b146eadbf744b6f1fae
Reviewed-on: https://gerrit.libreoffice.org/65721
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/online_transform.xsl | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index 5fa01a773b..2bd356a8c7 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -473,35 +473,35 @@ <!-- LIST --> <xsl:template match="list"> - <xsl:choose> - <xsl:when test="@type='ordered'"> - <ol> - <xsl:if test="@startwith"> - <xsl:attribute name="start"><xsl:value-of select="@startwith"/></xsl:attribute> - </xsl:if> - <xsl:apply-templates /> - </ol> - </xsl:when> - <xsl:otherwise> - <ul><xsl:apply-templates /></ul> - </xsl:otherwise> - </xsl:choose> + <xsl:choose> + <xsl:when test="@type='ordered'"> + <ol> + <xsl:if test="@startwith"> + <xsl:attribute name="start"><xsl:value-of select="@startwith"/></xsl:attribute> + </xsl:if> + <xsl:apply-templates /> + </ol> + </xsl:when> + <xsl:otherwise> + <ul><xsl:apply-templates /></ul> + </xsl:otherwise> + </xsl:choose> </xsl:template> <xsl:template match="list" mode="embedded"> - <xsl:choose> - <xsl:when test="@type='ordered'"> - <ol> - <xsl:if test="@startwith"> - <xsl:attribute name="start"><xsl:value-of select="@startwith"/></xsl:attribute> - </xsl:if> - <xsl:apply-templates mode="embedded"/> - </ol> - </xsl:when> - <xsl:otherwise> - <ul><xsl:apply-templates mode="embedded"/></ul> - </xsl:otherwise> - </xsl:choose> + <xsl:choose> + <xsl:when test="@type='ordered'"> + <ol> + <xsl:if test="@startwith"> + <xsl:attribute name="start"><xsl:value-of select="@startwith"/></xsl:attribute> + </xsl:if> + <xsl:apply-templates mode="embedded"/> + </ol> + </xsl:when> + <xsl:otherwise> + <ul><xsl:apply-templates mode="embedded"/></ul> + </xsl:otherwise> + </xsl:choose> </xsl:template> <!-- LISTITEM --> @@ -519,12 +519,12 @@ <!-- OBJECT --> <xsl:template match="object"> <xsl:if test="$online"> - <xsl:call-template name="insertobject"/> + <xsl:call-template name="insertobject"/> </xsl:if> </xsl:template> <xsl:template match="object" mode="embedded"> <xsl:if test="$online"> - <xsl:call-template name="insertobject"/> + <xsl:call-template name="insertobject"/> </xsl:if> </xsl:template> |